diff options
author | Emanuele Rocca <ema@debian.org> | 2014-01-13 20:40:26 +0100 |
---|---|---|
committer | Emanuele Rocca <ema@debian.org> | 2014-01-13 20:40:26 +0100 |
commit | 52aafbcf76e9315f242dba800ca427d6c61549f6 (patch) | |
tree | 613fc813f0532c217c4a0fcce90da211f8d28fa8 /debian/rules | |
parent | 8e03a58d62f4b8c00978634f116819ff246c09d3 (diff) |
festvox-suopuhe-mv (20041119-2) unstable; urgency=low
* QA upload.
* Maintainer field set to QA Group.
* Bump Standards-Version to 3.9.5.
* Debhelper compatibility level set to 9.
* Add dependency on ${misc:Depends}.
* Add build-{dep,arch} to debian/rules.
[dgit import package festvox-suopuhe-mv 20041119-2]
Diffstat (limited to 'debian/rules')
-rwxr-xr-x | debian/rules | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..8898da4 --- /dev/null +++ b/debian/rules @@ -0,0 +1,41 @@ +#!/usr/bin/make -f +# Sample debian/rules that uses debhelper. GNU copyright 1997 by Joey Hess. + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +ORIGNAME=hy_fi_mv_diphone + +build: +# Nothing to do. + +build-arch: build +build-indep: build + +clean: + dh_testdir + dh_testroot + dh_clean + +# Build architecture-dependent files here. +binary-arch: build +# We have nothing to do. + +# Build architecture-independent files here. +binary-indep: build + dh_testdir + dh_testroot + dh_installdirs usr/share/festival/voices/finnish/${ORIGNAME}/group + dh_install + dh_installdocs + dh_link usr/share/festival/voices/finnish/suopuhe.common \ + usr/share/festival/voices/finnish/${ORIGNAME}/festvox + dh_installchangelogs + dh_compress + dh_fixperms + dh_gencontrol + dh_md5sums + dh_builddeb + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary |