diff options
author | Muflone | 2015-06-13 17:59:20 +0200 |
---|---|---|
committer | Muflone | 2015-06-13 17:59:20 +0200 |
commit | 1b4536034a9fdbd5101fb244fb809f86ca6809bc (patch) | |
tree | 2b296be08c2ad268a7d4de68f79b951a41375b15 /PKGBUILD | |
download | aur-1b4536034a9fdbd5101fb244fb809f86ca6809bc.tar.gz |
Initial import
Diffstat (limited to 'PKGBUILD')
-rw-r--r-- | PKGBUILD | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 000000000000..24d6f4135660 --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,25 @@ +# Maintainer: Muflone <webreg@vbsimple.net> +# Contributor: Changaco <me@changaco.net> +pkgname=mbrola-voices-ee1 +pkgver=1 +pkgrel=4 +_pkgfile=ee1 +pkgdesc="An Estonian male voice for the MBROLA synthesizer" +arch=(any) +url="http://tcts.fpms.ac.be/synthesis/mbrola.html" +groups=(mbrola-voices-ee mbrola-voices gespeaker-mbrola-voices) +depends=(mbrola) +license=(custom) +source=("http://tcts.fpms.ac.be/synthesis/mbrola/dba/${_pkgfile}/${_pkgfile}.zip") +md5sums=('38377e171c4a3d3d30e9b214798d3d8c') + +package(){ + cd "${srcdir}/${_pkgfile}" + # Install license file + install -D -m 644 "license.txt" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" + # Install files + for file in ee1 ee1.txt TEST/* + do + install -D -m 644 "${file}" "${pkgdir}/usr/share/mbrola/${_pkgfile}/${file}" + done +} |