Files
alien/debian/rules

54 lines
1.2 KiB
Plaintext
Raw Permalink Normal View History

1999-09-05 05:50:40 +00:00
#!/usr/bin/make -f
2000-04-21 08:55:46 +00:00
build: build-stamp
build-stamp:
dh_testdir
perl Makefile.PL
$(MAKE)
# simple smoke test
./alien.pl -V
1999-09-05 05:50:40 +00:00
touch build-stamp
2000-04-21 08:55:46 +00:00
clean:
dh_testdir
dh_testroot
rm -f build-stamp
perl Makefile.PL
-$(MAKE) realclean
dh_clean
1999-09-05 05:50:40 +00:00
2000-04-21 08:55:46 +00:00
binary-arch: build
1999-09-05 05:50:40 +00:00
2000-04-21 08:55:46 +00:00
binary-indep: build
dh_testdir
dh_testroot
dh_clean -k
$(MAKE) pure_install INSTALLDIRS=vendor \
PREFIX=$(shell pwd)/debian/alien/$(shell perl -MConfig -e 'print $$Config{prefix}') \
VARPREFIX=$(shell pwd)/debian/alien
# Why does it make this empty directory? Sigh.
rm -rf debian/alien/usr/lib
dh_installdocs README gendiff.txt
dh_installexamples
dh_installchangelogs
dh_compress
dh_fixperms
dh_perl
dh_installdeb
dh_gencontrol
dh_md5sums
dh_builddeb
VERSION=$(shell expr "`dpkg-parsechangelog 2>/dev/null |grep Version:`" : '.*Version: \(.*\)')
# Update the web page. Not intended for use by anyone except the author.
DIR=/home/web/kitenet.net/programs/alien
installhook:
cp debian/changelog $(DIR)/CHANGES
echo -n $(VERSION) > $(DIR)/LATEST-VERSION-IS
rm -f $(DIR)/*.tar.gz
ln -sf /home/joey/lib/debian/unstable/alien_$(VERSION).tar.gz $(DIR)
1999-09-05 05:50:40 +00:00
binary: binary-indep binary-arch
.PHONY: build clean binary-indep binary-arch binary