1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
#!/usr/bin/make -f
include /usr/share/cdbs/1/rules/debhelper.mk
include /usr/share/cdbs/1/class/autotools.mk
#DH_VERBOSE = 1
DEB_CONFIGURE_EXTRA_FLAGS := --bindir=/usr/sbin
DEB_UPDATE_RCD_PARAMS := defaults 20 18
clean::
find doc -name "pgbouncer.*" -exec rm {} \;
install/pgbouncer::
rm -f $(CURDIR)/debian/pgbouncer/usr/share/doc/pgbouncer/pgbouncer.ini
mkdir -p $(CURDIR)/debian/pgbouncer/etc/pgbouncer
touch $(CURDIR)/debian/pgbouncer/etc/pgbouncer/userlist.txt
binary-predeb/pgbouncer::
patch -p0 $(CURDIR)/debian/pgbouncer/etc/pgbouncer/pgbouncer.ini $(CURDIR)/debian/config.patch
|