summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--debian/changelog18
-rw-r--r--debian/compat1
-rw-r--r--debian/control15
-rw-r--r--debian/copyright33
-rw-r--r--debian/install1
-rwxr-xr-xdebian/rules41
6 files changed, 109 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..563be92
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,18 @@
+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.
+
+ -- Emanuele Rocca <ema@debian.org> Mon, 13 Jan 2014 20:40:26 +0100
+
+festvox-suopuhe-mv (20041119-1) unstable; urgency=low
+
+ * Initial Release. (Closes: #301066)
+ * Fixed FSF address in debian/copyright.
+
+ -- Niko Tyni <ntyni@iki.fi> Tue, 18 Oct 2005 12:32:20 +0000
+
diff --git a/debian/compat b/debian/compat
new file mode 100644
index 0000000..ec63514
--- /dev/null
+++ b/debian/compat
@@ -0,0 +1 @@
+9
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..9a13546
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,15 @@
+Source: festvox-suopuhe-mv
+Section: sound
+Priority: extra
+Maintainer: Debian QA Group <packages@qa.debian.org>
+Standards-Version: 3.9.5
+Build-Depends: debhelper (>= 9)
+
+Package: festvox-suopuhe-mv
+Architecture: all
+Depends: ${misc:Depends}, festival (>= 1.4.3-9), festvox-suopuhe-common
+Provides: festival-voice
+Description: Finnish male speaker for festival
+ This is a Finnish male speaker for the Festival speech synthesis
+ system. It was developed as part of the Suopuhe project at
+ the universities of Helsinki and Joensuu.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..bc472bf
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,33 @@
+This package was debianized by Niko Tyni <ntyni@iki.fi> on
+Tue, 18 Oct 2005 15:09:49 +0300.
+
+It was downloaded from
+http://www.ling.helsinki.fi/suopuhe/download/hy_fi_mv_diphone-20041119.tgz
+
+Upstream Authors:
+ Nicholas Volk <nvolk@ling.helsinki.fi>
+ Martti Vainio
+
+Copyright:
+
+ Copyright (c) 2000-2003 Yleisen kielitieen laitos, Helsingin yliopisto, ja
+ Vieraiden kielten laitos, Joensuun yliopisto
+
+ This program is distributed under Gnu Lesser General Public License (cf. the
+ file LICENSE in distribution).
+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU Lesser General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU Lesser General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program; if not, write to the Free Software
+ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+
+You can find a copy of the LGPL license at /usr/share/common-licenses/LGPL
diff --git a/debian/install b/debian/install
new file mode 100644
index 0000000..c5e55af
--- /dev/null
+++ b/debian/install
@@ -0,0 +1 @@
+lib/voices/finnish/hy_fi_mv_diphone/group usr/share/festival/voices/finnish/hy_fi_mv_diphone
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