python-pefile/python-pefile.spec

57 lines
1.9 KiB
RPMSpec
Raw Normal View History

#
# spec file for package python-pefile
#
# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
#
# Please submit bugfixes or comments via http://bugs.opensuse.org/
#
Name: python-pefile
Version: 1.2.10+121
Release: 0
License: GPL-2.0+
Summary: A python module to work with PE (pertable executable) files
Url: http://code.google.com/p/pefile
Group: Development/Libraries/Python
Source0: pefile-1.2.10-121.tar.gz
Source1: http://reverse-engineering-scripts.googlecode.com/files/UserDB.TXT
BuildRequires: python-devel
BuildRequires: dos2unix
BuildRoot: %{_tmppath}/%{name}-%{version}-build
BuildArch: noarch
%if 0%{?suse_version} && 0%{?suse_version} <= 1110
%{!?python_sitearch: %global python_sitearch %(python -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")}
%endif
%description
PEFILE is a python module that is often used in malware analysis. (Replace this with text from website.)
%prep
%setup -q -n pefile-1.2.10-121
cp %{SOURCE1} .
dos2unix COPYING
dos2unix %{SOURCE1}
%build
CFLAGS="%{optflags}" python setup.py build
%install
python setup.py install --root=%{buildroot} --prefix=%{_prefix} --record-rpm=INSTALLED_FILES
%files -f INSTALLED_FILES
%defattr(-,root,root)
%doc UserDB.TXT COPYING README PKG-INFO
%changelog