1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
|
#!/bin/sh
#
# This script creates Q Light Controller RPM packages.
if [ ! -f platforms/linux/qlcplus.spec ]; then
echo ERROR: This script must be run from the top-level QLC+ source directory
exit 1;
fi
if [ -f Makefile ]; then
echo Cleaning objects from previous compile
make distclean
fi
VERSION=$(head -1 debian/changelog | sed 's/.*(\(.*\)).*/\1/')
RPMBUILD=~/rpmbuild
# Prepare RPM build directory hierarchy
if [ ! -f $RPMBUILD ]; then
echo Creating RPMBUILD hierarchy in $RPMBUILD
mkdir -p $RPMBUILD/SOURCES $RPMBUILD/SPECS
fi
# Put a plain RPM spec file where rpmbuild expects it
sed -e "s/\$QLCPLUS_VERSION/$VERSION/g" platforms/linux/qlcplus.spec > $RPMBUILD/SPECS/qlcplus.spec
# Prepare a source tarball and move it under $RPMBUILD/SOURCES
echo "Packing sources into qlcplus-$VERSION.tar.gz..."
if [ -d /tmp/qlcplus-$VERSION ]; then
rm -rf /tmp/qlcplus-$VERSION
fi
mkdir /tmp/qlcplus-$VERSION
rsync -aC . /tmp/qlcplus-$VERSION
tar --directory=/tmp -czf /tmp/qlcplus-$VERSION.tar.gz qlcplus-$VERSION
mv /tmp/qlcplus-$VERSION.tar.gz $RPMBUILD/SOURCES
cd $RPMBUILD/SPECS
rpmbuild -ba qlcplus.spec
if [ $? == 0 ]; then
echo Packages created in $RPMBUILD/RPMS
fi
|