2006-04-29 10:59:37 +02:00
|
|
|
#!/usr/bin/make -f
|
|
|
|
# -*- makefile -*-
|
|
|
|
# Sample debian/rules that uses debhelper.
|
|
|
|
# This file was originally written by Joey Hess and Craig Small.
|
|
|
|
# As a special exception, when this file is copied by dh-make into a
|
|
|
|
# dh-make output file, you may use that output file without restriction.
|
|
|
|
# This special exception was added by Craig Small in version 0.37 of dh-make.
|
|
|
|
|
|
|
|
# Uncomment this to turn on verbose mode.
|
|
|
|
#export DH_VERBOSE=1
|
|
|
|
|
2006-05-04 05:46:55 +02:00
|
|
|
# necessary for dpatch
|
|
|
|
.NOTPARALLEL:
|
|
|
|
|
2006-04-29 10:59:37 +02:00
|
|
|
|
|
|
|
configure: configure-stamp
|
|
|
|
configure-stamp: patch
|
|
|
|
dh_testdir
|
2006-04-29 14:39:43 +02:00
|
|
|
perl Makefile.PL INSTALLDIRS=vendor DESTDIR="$(CURDIR)/debian/ezmlm-web"
|
2006-04-29 10:59:37 +02:00
|
|
|
touch configure-stamp
|
|
|
|
|
|
|
|
|
|
|
|
build: build-stamp
|
|
|
|
|
|
|
|
build-stamp: configure-stamp
|
|
|
|
dh_testdir
|
2006-04-29 11:31:38 +02:00
|
|
|
$(MAKE)
|
2007-08-08 00:48:40 +02:00
|
|
|
# fix 'usr/local/' paths in various files
|
|
|
|
sed -i 's#usr/local/#usr/#g' examples/* suid-wrapper/* man/*
|
2006-04-29 10:59:37 +02:00
|
|
|
touch build-stamp
|
|
|
|
|
|
|
|
clean: clean-patched unpatch
|
|
|
|
|
|
|
|
clean-patched:
|
|
|
|
dh_testdir
|
|
|
|
dh_testroot
|
2006-04-29 11:09:27 +02:00
|
|
|
-$(MAKE) clean
|
2007-08-05 00:53:31 +02:00
|
|
|
rm -f build-stamp configure-stamp Makefile.old
|
2006-04-29 10:59:37 +02:00
|
|
|
dh_clean
|
|
|
|
|
|
|
|
patch: patch-stamp
|
|
|
|
patch-stamp:
|
|
|
|
dpatch apply-all
|
|
|
|
touch patch-stamp
|
|
|
|
|
|
|
|
unpatch:
|
|
|
|
dpatch deapply-all
|
|
|
|
rm -rf patch-stamp debian/patched
|
|
|
|
|
|
|
|
install: build
|
|
|
|
dh_testdir
|
|
|
|
dh_testroot
|
|
|
|
dh_clean -k
|
|
|
|
dh_installdirs
|
|
|
|
|
|
|
|
$(MAKE) install
|
|
|
|
|
2006-04-29 14:39:43 +02:00
|
|
|
install -c -m 644 examples/ezmlmwebrc.dist "$(CURDIR)/debian/ezmlm-web/etc/ezmlm-web/ezmlmwebrc"
|
2006-04-29 11:51:41 +02:00
|
|
|
|
2006-04-29 10:59:37 +02:00
|
|
|
|
|
|
|
# Build architecture-independent files here.
|
|
|
|
binary-indep: build install
|
|
|
|
|
|
|
|
# Build architecture-dependent files here.
|
|
|
|
binary-arch: build install
|
|
|
|
dh_testdir
|
|
|
|
dh_testroot
|
|
|
|
dh_installchangelogs
|
|
|
|
dh_installdocs
|
|
|
|
dh_installexamples
|
2007-08-05 00:53:31 +02:00
|
|
|
dh_install
|
2006-04-29 10:59:37 +02:00
|
|
|
dh_installman
|
|
|
|
dh_link
|
|
|
|
dh_strip
|
|
|
|
dh_compress
|
|
|
|
dh_fixperms
|
2007-08-05 00:53:31 +02:00
|
|
|
dh_perl
|
2006-04-29 10:59:37 +02:00
|
|
|
dh_installdeb
|
|
|
|
dh_shlibdeps
|
|
|
|
dh_gencontrol
|
|
|
|
dh_md5sums
|
|
|
|
dh_builddeb
|
|
|
|
|
|
|
|
binary: binary-indep binary-arch
|
|
|
|
.PHONY: build clean binary-indep binary-arch binary install configure
|
2007-08-05 00:53:31 +02:00
|
|
|
|