Fix setup.py and pungi.spec for pkgorder.

Test first, then commit.  *sigh*
This commit is contained in:
Jesse Keating 2008-06-23 10:54:45 -04:00
parent 0670212e14
commit af2d5a1e58
2 changed files with 2 additions and 2 deletions

View File

@ -49,6 +49,7 @@ rm -rf $RPM_BUILD_ROOT
%{python_sitelib}/%{name}-%{version}-py2.5.egg-info
%endif
%{_bindir}/pungi
%{_bindir}/pkgorder
%{_datadir}/pungi
%{_mandir}/man8/pungi.8.gz
/var/cache/pungi

View File

@ -10,8 +10,7 @@ setup(name='pungi',
license='GPLv2',
package_dir = {'': 'src'},
packages = ['pypungi'],
scripts = ['src/bin/pungi.py'],
scripts = ['src/bin/pkgorder'],
scripts = ['src/bin/pungi.py', 'src/bin/pkgorder'],
data_files=[('/usr/share/pungi', glob.glob('share/*'))]
)