mirror of
https://github.com/xcat2/confluent.git
synced 2024-11-22 01:22:00 +00:00
f649efa110
Easier support for debian and ubuntu.
23 lines
529 B
Bash
Executable File
23 lines
529 B
Bash
Executable File
#!/bin/bash
|
|
cd `dirname $0`
|
|
if [ -x ./makeman ]; then
|
|
./makeman
|
|
fi
|
|
./makesetup
|
|
VERSION=`cat VERSION`
|
|
PKGNAME=$(basename $(pwd))
|
|
touch setup.cfg
|
|
python setup.py sdist > /dev/null 2>&1
|
|
py2dsc dist/*.tar.gz
|
|
shopt -s extglob
|
|
cd deb_dist/!(*.orig)/
|
|
dpkg-buildpackage -rfakeroot -uc -us -i
|
|
if [ $? -ne 0 ]; then
|
|
echo "[ERROR] rpmbuild returned non-zero, run: rpmbuild -ba ~/rpmbuild/SPECS/$PKGNAME.spec"
|
|
exit 1
|
|
else
|
|
# Clean up the generated files in this directory
|
|
rm -rf $PKGNAME.egg-info dist setup.py
|
|
fi
|
|
exit 0
|