mirror of
https://github.com/xcat2/confluent.git
synced 2024-11-22 01:22:00 +00:00
c70f365cd2
add supportfor pam authentication
10 lines
316 B
Bash
Executable File
10 lines
316 B
Bash
Executable File
#!/bin/sh
|
|
cd `dirname $0`
|
|
./makesetup
|
|
VERSION=`cat VERSION`
|
|
PKGNAME=$(basename $(pwd))
|
|
python setup.py sdist > /dev/null 2>&1
|
|
cp dist/*.tar.gz ~/rpmbuild/SOURCES
|
|
sed -e 's/#VERSION#/'$VERSION/ $PKGNAME.spec.tmpl > ~/rpmbuild/SPECS/$PKGNAME.spec
|
|
rpmbuild -ba ~/rpmbuild/SPECS/$PKGNAME.spec 2> /dev/null |grep ^Wrote:
|