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 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79
|
#!/usr/bin/make -f
#export DH_VERBOSE=1
ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
NOOPT=1
else
NOOPT=0
endif
include /usr/share/dpatch/dpatch.make
configure: configure-stamp
configure-stamp: patch-stamp
dh_testdir
cp -a /usr/share/misc/config.sub .
autoconf
./configure --prefix=/usr --mandir=\$${prefix}/share/man \
--infodir=\$${prefix}/share/info
if [ "$(NOOPT)" = "1" ]; then \
cat Makefile | sed -e s/"-O2"/"-O0"/ > out && \
mv out Makefile; \
fi
touch configure-stamp
build: configure-stamp build-stamp
build-stamp:
dh_testdir
$(MAKE)
cd toshsat1800-irdasetup-0.2; $(MAKE)
touch build-stamp
clean: unpatch
dh_testdir
dh_testroot
rm -f build-stamp configure-stamp
rm -rf toshsat1800-irdasetup-0.2/
[ ! -f Makefile ] || $(MAKE) distclean
dh_clean
rm -f configure config.sub config.log confdefs.h
install: build
dh_testdir
dh_testroot
dh_clean -k
dh_installdirs
$(MAKE) install \
BINDESTDIR=$(CURDIR)/debian/toshset/usr/bin \
MANDESTDIR=$(CURDIR)/debian/toshset/usr/share/man/man1
# generate a supported-models.txt
echo " ID Model " > \
$(CURDIR)/debian/toshset/usr/share/doc/toshset/supported-models.txt
echo "-------------------------------------------------------" >> \
$(CURDIR)/debian/toshset/usr/share/doc/toshset/supported-models.txt
cat toshibaIDs.cc | grep {0 | sed -e s/{// -e s/,\"// \
-e s/\"},// | sed -e s/"0 \" }"// >> \
$(CURDIR)/debian/toshset/usr/share/doc/toshset/supported-models.txt
install -m 755 toshsat1800-irdasetup-0.2/toshsat1800-irdasetup debian/toshset/usr/sbin/
binary-indep: build install
binary-arch: build install
dh_testdir
dh_testroot
dh_installdocs README README.video
cp toshsat1800-irdasetup-0.2/README debian/toshset/usr/share/doc/toshset/README.IrDA
dh_installman debian/toshsat1800-irdasetup.1
dh_installchangelogs ChangeLog
dh_strip
dh_compress
dh_fixperms
dh_installdeb
dh_shlibdeps
dh_gencontrol
dh_md5sums
dh_builddeb
binary: binary-indep binary-arch
.PHONY: build clean binary-indep binary-arch binary install
|