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 27
|
#!/usr/bin/make -f
include /usr/share/cdbs/1/rules/debhelper.mk
include /usr/share/cdbs/1/rules/upstream-tarball.mk
include /usr/share/cdbs/1/rules/utils.mk
include /usr/share/cdbs/1/class/makefile.mk
pkg = fonts-meera-taml
DEB_UPSTREAM_PACKAGE = v
DEB_UPSTREAM_TARBALL_BASENAME = $(DEB_UPSTREAM_PACKAGE)$(DEB_UPSTREAM_VERSION)
DEB_UPSTREAM_URL = https://github.com/santhoshtr/meera-tamil/archive
#DEB_UPSTREAM_TARBALL_MD5 = d1c401640dc5bfa06cded0e468ff4381
# unset install target
DEB_MAKE_INSTALL_TARGET =
# build target is webfonts as upstream stopped shipping binary woff
# and eot files
DEB_MAKE_BUILD_TARGET = webfonts
# build-depends
CDBS_BUILD_DEPENDS += ,fontforge, woff-tools, eot-utils
# Ignore these files while generating copyright hints
DEB_COPYRIGHT_CHECK_IGNORE_REGEX = (.woff|.eot|debian/(changelog|copyright(|_hints|_newhints)))
|