diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2015-04-10 14:53:38 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2015-04-10 14:59:57 +0000 |
commit | a1ab97672a9f84f79ee19643f8aea3774ccbba3b (patch) | |
tree | 765a1e37a21be2c4217d7c85f631004bdae8d21f /main/hyphen | |
parent | ac285094e94c6964b3fb4a6a327a6b5e658019e3 (diff) | |
download | aports-a1ab97672a9f84f79ee19643f8aea3774ccbba3b.tar.bz2 aports-a1ab97672a9f84f79ee19643f8aea3774ccbba3b.tar.xz |
main/hyphen: moved to main
Diffstat (limited to 'main/hyphen')
-rw-r--r-- | main/hyphen/APKBUILD | 67 |
1 files changed, 67 insertions, 0 deletions
diff --git a/main/hyphen/APKBUILD b/main/hyphen/APKBUILD new file mode 100644 index 0000000000..f664579d7b --- /dev/null +++ b/main/hyphen/APKBUILD @@ -0,0 +1,67 @@ +# Contributor: Timo Teräs <timo.teras@iki.fi> +# Maintainer: Timo Teräs <timo.teras@iki.fi> +pkgname=hyphen +pkgver=2.8.8 +pkgrel=0 +pkgdesc="Library for high quality hyphenation and justification" +url="http://hunspell.sourceforge.net/" +arch="all" +license="GPL2+ LGPL2+ MPL 1.1" +subpackages="$pkgname-dev $pkgname-en" +depends="" +depends_dev="perl" +makedepends="$depends_dev" +source="http://downloads.sourceforge.net/hunspell/$pkgname-$pkgver.tar.gz + " + +_builddir="$srcdir"/$pkgname-$pkgver +prepare() { + cd "$_builddir" + for i in $source; do + case $i in + *.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;; + esac + done +} + +build() { + cd "$_builddir" + ./configure \ + --build=$CBUILD \ + --host=$CHOST \ + --prefix=/usr \ + --disable-static \ + --disable-dependency-tracking \ + --enable-fast-install \ + || return 1 + make || return 1 +} + +package() { + cd "$_builddir" + make -j1 DESTDIR="$pkgdir" install || return 1 + rm "$pkgdir"/usr/lib/*.la || return 1 +} + +dev() { + default_dev + mkdir -p "$subpkgdir"/usr + mv "$pkgdir"/usr/bin "$subpkgdir"/usr +} + +en() { + pkgdesc="English hyphenation rules" + depends="hyphen" + + mkdir -p "$subpkgdir"/usr + mv "$pkgdir"/usr/share "$subpkgdir"/usr + + for lang in en_AG en_AU en_BS en_BW en_BZ en_CA en_DK en_GB en_GH en_HK en_IE en_IN en_JM en_NA en_NZ en_PH en_SG en_TT en_ZA en_ZW; do + ln -s hyph_en_US.dic "$subpkgdir"/usr/share/hyphen/hyph_$lang.dic + done + +} + +md5sums="5ade6ae2a99bc1e9e57031ca88d36dad hyphen-2.8.8.tar.gz" +sha256sums="304636d4eccd81a14b6914d07b84c79ebb815288c76fe027b9ebff6ff24d5705 hyphen-2.8.8.tar.gz" +sha512sums="ee514952be56869840b70fb74f60eba14dc4de246733ff8705492367e8cf00c485f8778a9d5a7ba374c988d4ac9fedbe75826dc559e1b62465dbfba21f6ce7de hyphen-2.8.8.tar.gz" |