tvheadend/debian/rules

39 lines
624 B
Text
Raw Normal View History

2009-03-30 18:11:57 +00:00
#!/usr/bin/make -f
# Uncomment this to turn on verbose mode.
#export DH_VERBOSE=1
2009-03-30 18:11:57 +00:00
DEB_BUILD_GNU_TYPE := $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE)
%:
dh $@
2009-03-30 18:11:57 +00:00
override_dh_clean:
2009-03-30 18:11:57 +00:00
dh_testdir
dh_testroot
rm -rf build.*
dh_clean
2009-03-30 18:11:57 +00:00
override_dh_auto_clean:
dh_clean
2009-03-30 18:11:57 +00:00
override_dh_auto_configure:
dh_testdir
./configure --release --prefix=/usr
override_dh_auto_build:
$(MAKE)
2009-03-30 18:11:57 +00:00
override_dh_install:
2011-05-21 11:23:33 +02:00
$(MAKE) DESTDIR=$(CURDIR)/debian/tvheadend install
override_dh_installinit:
dh_installinit --name tvheadend
2011-02-19 13:07:28 +01:00
override_dh_strip:
2011-05-21 11:23:33 +02:00
dh_strip --dbg-package=tvheadend-dbg
override_dh_autotest:
echo "skipped autotest"