forked from imeyer/runit-rpm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sh
executable file
·19 lines (14 loc) · 852 Bytes
/
build.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/bin/sh
whereami=$(dirname $0)
if [ ! -f "/etc/rpm/macros.dist" ] && \
[ ! -f "/etc/rpm/macros.disttag" ]; then echo "please install 'buildsys-macros' rpm and try again" ; exit 1 ; fi
if [ ! -f "$(which rpmbuild)" ]; then echo "please install 'rpm-build' rpm and try again" ; exit 1 ; fi
if [ ! -f "$(which spectool)" ]; then echo "please install 'rpmdevtools' rpm and try again" ; exit 1 ; fi
if [ ! -f "$(which rpmdev-setuptree)" ]; then echo "please install 'rpmdevtools' rpm and try again" ; exit 1 ; fi
# creates ~/rpmbuild
/usr/bin/rpmdev-setuptree
cp -f ${whereami}/runit.spec ~/rpmbuild/SPECS/
cp -f ${whereami}/*.patch ~/rpmbuild/SOURCES/
cp -f ${whereami}/runsvdir-start.service ~/rpmbuild/SOURCES/
/usr/bin/spectool -C ~/rpmbuild/SOURCES/ -g ${whereami}/runit.spec
rpmbuild -bb ~/rpmbuild/SPECS/runit.spec