1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
|
#!/usr/bin/make -f
# -*- mode: makefile; coding: utf-8 -*-
# Copyright © 2003-2004 Jonas Smedegaard <dr@jones.dk>
# Let's be bold and enable this funky new cdbs feature
DEB_AUTO_UPDATE_DEBIAN_CONTROL = 1
include /usr/share/cdbs/1/rules/debhelper.mk
include /usr/share/cdbs/1/class/makefile.mk
include /usr/share/cdbs/1/rules/simple-patchsys.mk
# these rules are not (yet?) included in cdbs officially
include debian/cdbs/1/class/dict.mk
include debian/cdbs/1/rules/bts.mk
include debian/cdbs/1/rules/buildinfo.mk
DEB_MAKE_BUILD_TARGET = all
DEB_INSTALL_DOCS_ALL += contributors
DEB_DICT_LANG = danish
DEB_DICT_NATIVELANG = dansk
DEB_DICT_LANGCODE = da
DEB_DICT_COUNTRYCODE = DK
# this package is currently unofficial, so divert bugreports
DEBEMAIL = debian@jones.dk
|