mirror of https://github.com/sipwise/sems.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
150 lines
3.5 KiB
150 lines
3.5 KiB
#!/usr/bin/make -f
|
|
# Sample debian/rules that uses debhelper.
|
|
# GNU copyright 1997 to 1999 by Joey Hess.
|
|
#
|
|
# $Id: rules,v 1.7 2007/12/20 14:21:19 paka Exp $
|
|
#
|
|
# History:
|
|
# --------
|
|
# 2008-02-06 stolen from SER and adapted for SEMS (stefan)
|
|
|
|
# Uncomment this to turn on verbose mode.
|
|
export DH_VERBOSE=1
|
|
|
|
# This is the debhelper compatibility version to use.
|
|
# export DH_COMPAT=4
|
|
# -- already set in compat
|
|
# force no striping (always include debug symbols for now)
|
|
export DEB_BUILD_OPTIONS:="$(DEB_BUILD_OPTIONS) nostrip"
|
|
|
|
|
|
|
|
|
|
|
|
PYTHON_MODULES=ivr py_sems conf_auth mailbox pin_collect
|
|
|
|
EXCLUDED_MODULES=mp3 examples
|
|
|
|
|
|
ifneq (,$(findstring debug,$(DEB_BUILD_OPTIONS)))
|
|
CFLAGS += -g
|
|
endif
|
|
ifeq (,$(findstring nostrip,$(DEB_BUILD_OPTIONS)))
|
|
INSTALL_PROGRAM += -s
|
|
endif
|
|
|
|
configure: configure-stamp
|
|
configure-stamp:
|
|
dh_testdir
|
|
# Add here commands to configure the package.
|
|
|
|
touch configure-stamp
|
|
|
|
build: build-stamp
|
|
|
|
build-stamp: configure-stamp
|
|
dh_testdir
|
|
|
|
# Add here commands to compile the package.
|
|
$(MAKE) cfg-target=/etc/sems/ prefix=/usr
|
|
#/usr/bin/docbook-to-man debian/ser.sgml > ser.1
|
|
|
|
touch build-stamp
|
|
|
|
clean:
|
|
dh_testdir
|
|
dh_testroot
|
|
rm -f build-stamp configure-stamp
|
|
|
|
# Add here commands to clean up after the build process.
|
|
|
|
dh_clean
|
|
|
|
install: build
|
|
dh_testdir
|
|
dh_testroot
|
|
dh_clean -k
|
|
dh_installdirs
|
|
|
|
# Add here commands to install the package into debian/sems
|
|
$(MAKE) -C core/ install \
|
|
basedir=$(CURDIR)/debian/sems \
|
|
prefix=/usr \
|
|
cfg-prefix=$(CURDIR)/debian/sems \
|
|
cfg-target=/etc/sems/
|
|
|
|
|
|
$(MAKE) -C apps/ install exclude_modules="$(EXCLUDED_MODULES) $(PYTHON_MODULES)" \
|
|
basedir=$(CURDIR)/debian/sems \
|
|
prefix=/usr \
|
|
cfg-prefix=$(CURDIR)/debian/sems \
|
|
cfg-target=/etc/sems/
|
|
|
|
# fix etc/ser dir location
|
|
# mv -f $(CURDIR)/debian/ser/usr/etc $(CURDIR)/debian/ser
|
|
|
|
# install only the python modules
|
|
$(MAKE) -C apps/ install modules="$(PYTHON_MODULES)" \
|
|
basedir=$(CURDIR)/debian/sems-python-modules \
|
|
prefix=/usr \
|
|
cfg-prefix=$(CURDIR)/debian/sems-python-modules \
|
|
cfg-target=/etc/sems/
|
|
|
|
# install /etc/default/sems file
|
|
mkdir -p $(CURDIR)/debian/sems/etc/default
|
|
cp -f debian/sems.default $(CURDIR)/debian/sems/etc/default/sems
|
|
#dh_movefiles
|
|
|
|
|
|
# This single target is used to build all the packages, all at once, or
|
|
# one at a time. So keep in mind: any options passed to commands here will
|
|
# affect _all_ packages. Anything you want to only affect one package
|
|
# should be put in another target, such as the install target.
|
|
binary-common:
|
|
dh_testdir
|
|
dh_testroot
|
|
dh_installdebconf
|
|
dh_installdocs
|
|
dh_installexamples
|
|
dh_installmenu
|
|
# dh_installlogrotate
|
|
# dh_installemacsen
|
|
# dh_installpam
|
|
# dh_installmime
|
|
dh_installinit -- defaults 23
|
|
dh_installcron
|
|
dh_installman
|
|
dh_installinfo
|
|
# dh_undocumented
|
|
dh_installchangelogs
|
|
dh_link
|
|
dh_strip
|
|
dh_compress
|
|
dh_fixperms
|
|
# dh_makeshlibs
|
|
dh_installdeb
|
|
# dh_perl
|
|
dh_shlibdeps
|
|
dh_gencontrol
|
|
dh_md5sums
|
|
dh_builddeb
|
|
|
|
# Build architecture-independent packages using the common target
|
|
binary-indep: build install
|
|
# (Uncomment this next line if you have such packages.)
|
|
# $(MAKE) -f debian/rules DH_OPTIONS=-i binary-common
|
|
# We have nothing to do by default.
|
|
|
|
|
|
# Build architecture-dependent packages using the common target
|
|
binary-arch: build install
|
|
$(MAKE) -f debian/rules DH_OPTIONS=-a binary-common
|
|
|
|
# Any other binary targets build just one binary package at a time.
|
|
binary-%: build install
|
|
$(MAKE) -f debian/rules binary-common DH_OPTIONS=-p$*
|
|
|
|
binary: binary-indep binary-arch
|
|
.PHONY: build clean binary-indep binary-arch binary install configure
|
|
|