diff options
author | Kiyoshi Aman <kiyoshi.aman+apkfission@gmail.com> | 2018-12-17 07:11:25 -0600 |
---|---|---|
committer | Kiyoshi Aman <kiyoshi.aman+apkfission@gmail.com> | 2018-12-17 07:11:25 -0600 |
commit | 6cfbbf7cc1af752db54e5865af099e80da867323 (patch) | |
tree | 3c3d24da4bb753e77d5ef88062ef991cd09901c1 /user | |
parent | d687077ac917fbb3be181e1a2a6f9a6604913723 (diff) | |
download | packages-6cfbbf7cc1af752db54e5865af099e80da867323.tar.gz packages-6cfbbf7cc1af752db54e5865af099e80da867323.tar.bz2 packages-6cfbbf7cc1af752db54e5865af099e80da867323.tar.xz packages-6cfbbf7cc1af752db54e5865af099e80da867323.zip |
user/aspell-dict-tl: new package
Diffstat (limited to 'user')
-rw-r--r-- | user/aspell-dict-tl/APKBUILD | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/user/aspell-dict-tl/APKBUILD b/user/aspell-dict-tl/APKBUILD new file mode 100644 index 000000000..7146e8b7f --- /dev/null +++ b/user/aspell-dict-tl/APKBUILD @@ -0,0 +1,26 @@ +# Contributor: Kiyoshi Aman <kiyoshi.aman+adelie@gmail.com> +# Maintainer: Kiyoshi Aman <kiyoshi.aman+adelie@gmail.com> +pkgname=aspell-dict-tl +pkgver=0.02.1 +_pkgver=${pkgver%.*}-${pkgver#*.*.} +pkgrel=0 +pkgdesc="Tagalog dictionaries for aspell" +url="http://aspell.net" +arch="noarch" +options="!check" # no tests +license="GPL-2.0-only" +depends="aspell" +makedepends="debianutils-which" +source="ftp://ftp.gnu.org/gnu/aspell/dict/tl/aspell5-tl-$_pkgver.tar.bz2" +builddir="$srcdir/aspell5-tl-$_pkgver" + +build() { + cd "$builddir" + ./configure --vars DESTDIR="$pkgdir" +} + +package() { + cd "$builddir" + make DESTDIR="$pkgdir" install +} +sha512sums="2bff0f0191104312b8674ef65ee77a8e80225bc9bb6afe651aeb94a03db8781e8545b5b09f0143f557092c868f0873c17c55055b8cdd66f18a648ba2c805a6f0 aspell5-tl-0.02-1.tar.bz2" |