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 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60
|
#!/usr/bin/make -f
# -*- makefile-*- Made with the aid of dh_make, by Craig Small
# Sample debian/rules that uses debhelper. GNU copyright 1997 by Joey Hess.
# This version is for a hypothetical package that builds an
# architecture-dependant package, as well as an architecture-independant
# package.
# Uncomment this to turn on verbose mode.
#export DH_VERBOSE=1
VERSION=2.8
build: build-stamp
build-stamp:
dh_testdir
cd libtsp && ./build_libtsp
touch build-stamp
clean:
dh_testroot
rm -f build-stamp lib/* libtsp/*.o
find .. -name $(package)*dsc.asc -size 0 -maxdepth 1 -exec rm {} ";"
chmod +x debian/libtsp2.postinst
dh_clean
# Build architecture-independent files here.
binary-indep: build
#
# Nothing to do?
#
binary-arch: build
dh_testdir -a
dh_testroot -a
dh_clean -a -k
dh_installdirs -a
install -m 644 lib/libtsp.a debian/tmp/usr/lib
install -m 644 lib/libtsp.so.2 debian/tmp/usr/lib/libtsp.so.$(VERSION)
cd debian/tmp/usr/lib && ln -s libtsp.so.$(VERSION) libtsp.so
cd debian/tmp/usr/lib && ln -s libtsp.so.$(VERSION) libtsp.so.2
cp -a include/libtsp.h include/libtsp debian/tmp/usr/include
dh_movefiles -a
dh_installdocs -a INSTALL README html/*
dh_installchangelogs -a
strip --strip-debug debian/tmp/usr/lib/libtsp.a
strip --strip-unneeded debian/libtsp2/usr/lib/libtsp.so.2.8
dh_compress -a
dh_fixperms -a
dh_installdeb -a
dh_shlibdeps -a
dh_gencontrol -u-isp
dh_md5sums -a
dh_builddeb -a
source diff:
@echo >&2 'source and diff are obsolete - use dpkg-source -b'; false
binary: binary-indep binary-arch
.PHONY: build clean binary-indep binary-arch binary
|