2007-02-12 00:33:24 +00:00
|
|
|
#! /bin/sh
|
|
|
|
#
|
2007-04-03 12:28:19 +00:00
|
|
|
# This file becomes the install section of the generated spec file.
|
2007-02-12 00:33:24 +00:00
|
|
|
#
|
|
|
|
|
2007-04-03 12:28:19 +00:00
|
|
|
# This is what dist.py normally does.
|
2007-02-12 00:33:24 +00:00
|
|
|
python setup.py install --root=${RPM_BUILD_ROOT} --record="INSTALLED_FILES"
|
|
|
|
|
2007-04-03 12:28:19 +00:00
|
|
|
# Sort the filelist so that directories appear before files. This avoids
|
|
|
|
# duplicate filename problems on some systems.
|
|
|
|
touch DIRS
|
2007-02-12 00:33:24 +00:00
|
|
|
for i in `cat INSTALLED_FILES`; do
|
|
|
|
if [ -f ${RPM_BUILD_ROOT}/$i ]; then
|
|
|
|
echo $i >>FILES
|
|
|
|
fi
|
|
|
|
if [ -d ${RPM_BUILD_ROOT}/$i ]; then
|
|
|
|
echo %dir $i >>DIRS
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
2007-04-03 12:28:19 +00:00
|
|
|
# Make sure we match foo.pyo and foo.pyc along with foo.py (but only once each)
|
|
|
|
sed -e "/\.py[co]$/d" -e "s/\.py$/.py*/" DIRS FILES >INSTALLED_FILES
|
|
|
|
|