diff options
-rw-r--r-- | user/aspell-dict-ml/APKBUILD | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/user/aspell-dict-ml/APKBUILD b/user/aspell-dict-ml/APKBUILD new file mode 100644 index 000000000..95d337d8c --- /dev/null +++ b/user/aspell-dict-ml/APKBUILD @@ -0,0 +1,26 @@ +# Contributor: Kiyoshi Aman <kiyoshi.aman+adelie@gmail.com> +# Maintainer: Kiyoshi Aman <kiyoshi.aman+adelie@gmail.com> +pkgname=aspell-dict-ml +pkgver=0.03 +_pkgver=$pkgver-1 +pkgrel=0 +pkgdesc="Malayalam 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/ml/aspell6-ml-$_pkgver.tar.bz2" +builddir="$srcdir/aspell6-ml-$_pkgver" + +build() { + cd "$builddir" + ./configure --vars DESTDIR="$pkgdir" +} + +package() { + cd "$builddir" + make DESTDIR="$pkgdir" install +} +sha512sums="78c3bc296a70a3b205427bcffe29b69ae6f673ffd22fd8a1ef5550ae271ed1f7704fff15c4948dcee2d7722c5d4b279766ef74d0661969b13bbca4d3a53971da aspell6-ml-0.03-1.tar.bz2" |