2006-04-26 12:28:53 +00:00
|
|
|
#!/usr/bin/make -f
|
|
|
|
# Sample debian/rules that uses debhelper.
|
|
|
|
# This file is public domain software, originally written by Joey Hess.
|
|
|
|
#
|
|
|
|
# This version is for a multibinary package. It also allows you to build any
|
|
|
|
# of the binary packages independantly, via binary-<package> targets.
|
|
|
|
|
|
|
|
# Uncomment this to turn on verbose mode.
|
|
|
|
export DH_VERBOSE=1
|
|
|
|
|
2013-04-23 15:11:00 +00:00
|
|
|
override_dh_install:
|
|
|
|
#dh install
|
|
|
|
$(MAKE) install-alternc DESTDIR=$(CURDIR)/debian/alternc
|
|
|
|
$(MAKE) install-squirrelmail DESTDIR=$(CURDIR)/debian/alternc-squirrelmail
|
|
|
|
$(MAKE) install-roundcube DESTDIR=$(CURDIR)/debian/alternc-roundcube
|
|
|
|
$(MAKE) install-awstats DESTDIR=$(CURDIR)/debian/alternc-awstats
|
|
|
|
$(MAKE) install-slave DESTDIR=$(CURDIR)/debian/alternc-slave
|
2015-05-07 15:43:54 +00:00
|
|
|
$(MAKE) install-api DESTDIR=$(CURDIR)/debian/alternc-api
|
2013-04-23 15:11:00 +00:00
|
|
|
|
|
|
|
%:
|
|
|
|
dh $@
|
2006-04-26 12:28:53 +00:00
|
|
|
|