sogo/debian/rules
C Robert 11d5455737 Removed apache2 dependency
Monotone-Parent: 2c8266b41b53ae4ece560d6f611a57376986383a
Monotone-Revision: fc29c1b763c506067039095b47f73dfd6301f0e2

Monotone-Author: crobert@inverse.ca
Monotone-Date: 2009-08-18T17:41:14
Monotone-Branch: ca.inverse.sogo
2009-08-18 17:41:14 +00:00

82 lines
1.8 KiB
Makefile
Executable file

#!/usr/bin/make -f
# -*- makefile -*-
export DH_VERBOSE=1
# export DH_OPTIONS="-p sogo"
config.make: configure
dh_testdir
./configure
#Architecture
build: build-arch build-indep
build-arch: build-arch-stamp
build-arch-stamp: config.make
# Add here commands to compile the arch part of the package.
$(MAKE)
touch $@
build-indep: build-indep-stamp
build-indep-stamp: config.make
# Add here commands to compile the indep part of the package.
# $(MAKE) doc
touch $@
clean:
dh_testdir
dh_testroot
rm -f build-arch-stamp build-indep-stamp
if [ -f config.make ]; then make clean; fi
dh_clean
install: install-arch
install-indep:
dh_testdir
dh_testroot
dh_prep -i
dh_installdirs -i
dh_install -i
install-arch: build-arch
dh_testdir
dh_testroot
dh_prep -i
# dh_installdirs -s
$(MAKE) DESTDIR=$(CURDIR)/debian/tmp GNUSTEP_INSTALLATION_DOMAIN=SYSTEM install
mkdir -p debian/tmp/etc/default
cp Scripts/sogo-default debian/tmp/etc/default/sogo
cp Scripts/sogod-wrapper debian/tmp/usr/sbin/sogod-wrapper
mkdir -p debian/tmp/usr/share/lintian/overrides
cp debian/sogo.overrides debian/tmp/usr/share/lintian/overrides/sogo
mkdir -p debian/tmp/etc/apache2/conf.d
cp Apache/SOGo-debian.conf debian/tmp/etc/apache2/conf.d/SOGo.conf
binary-indep: build-indep install-indep
# Build architecture dependant packages using the common target.
binary-arch: build-arch install-arch
dh_testdir
dh_testroot
dh_installinit -r
dh_installlogrotate
dh_installcron
dh_installchangelogs ChangeLog
dh_installdocs
dh_installexamples
dh_installman
dh_install
dh_link
dh_strip
dh_compress
dh_fixperms
dh_makeshlibs
dh_shlibdeps
dh_installdeb
dh_gencontrol
dh_md5sums
dh_builddeb
binary: binary-arch
.PHONY: build clean binary-indep binary-arch binary install install-indep install-arch