Skip to content

Commit

Permalink
support bdist_rpm
Browse files Browse the repository at this point in the history
  • Loading branch information
tilgovi authored and benoitc committed Jan 11, 2011
1 parent 39f5d31 commit 0b8e480
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
13 changes: 13 additions & 0 deletions rpm/install
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
%{__python} setup.py install --skip-build --root=$RPM_BUILD_ROOT

%if ! (0%{?fedora} > 12 || 0%{?rhel} > 5)
%{!?python_sitelib: %global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print(get_python_lib())")}
%{!?python_sitearch: %global python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print(get_python_lib(1))")}
%endif

INSTALLED_FILES="\
%{python_sitelib}/*
%{_bindir}/*
%doc doc
"
echo "$INSTALLED_FILES" > INSTALLED_FILES
5 changes: 5 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
[bdist_rpm]
packager = Randall Leeds <randall@meebo-inc.com>
build-requires = python2-devel python-setuptools
requires = python-setuptools >= 0.6c6 python-ctypes
install_script = rpm/install

0 comments on commit 0b8e480

Please sign in to comment.