diff options
author | Kiyoshi Aman <kiyoshi.aman+apkfission@gmail.com> | 2018-12-17 05:44:47 -0600 |
---|---|---|
committer | Kiyoshi Aman <kiyoshi.aman+apkfission@gmail.com> | 2018-12-17 05:44:47 -0600 |
commit | 00b1f3e84b86bcb06fc10492d9caeb7c59e88cf6 (patch) | |
tree | 26fa7b09466372bdcc2a455be346671153aa3765 /user/aspell-dict-mr/APKBUILD | |
parent | 9388e5aee9143acf5d589707528c154cbcaa0f1c (diff) | |
download | packages-00b1f3e84b86bcb06fc10492d9caeb7c59e88cf6.tar.gz packages-00b1f3e84b86bcb06fc10492d9caeb7c59e88cf6.tar.bz2 packages-00b1f3e84b86bcb06fc10492d9caeb7c59e88cf6.tar.xz packages-00b1f3e84b86bcb06fc10492d9caeb7c59e88cf6.zip |
user/aspell-dict-mr: new package
Diffstat (limited to 'user/aspell-dict-mr/APKBUILD')
-rw-r--r-- | user/aspell-dict-mr/APKBUILD | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/user/aspell-dict-mr/APKBUILD b/user/aspell-dict-mr/APKBUILD new file mode 100644 index 000000000..cdcb23249 --- /dev/null +++ b/user/aspell-dict-mr/APKBUILD @@ -0,0 +1,26 @@ +# Contributor: Kiyoshi Aman <kiyoshi.aman+adelie@gmail.com> +# Maintainer: Kiyoshi Aman <kiyoshi.aman+adelie@gmail.com> +pkgname=aspell-dict-mr +pkgver=0.10 +_pkgver=$pkgver-0 +pkgrel=0 +pkgdesc="Marathi 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/mr/aspell6-mr-$_pkgver.tar.bz2" +builddir="$srcdir/aspell6-mr-$_pkgver" + +build() { + cd "$builddir" + ./configure --vars DESTDIR="$pkgdir" +} + +package() { + cd "$builddir" + make DESTDIR="$pkgdir" install +} +sha512sums="4137a9d6f3dc67db81479a2df628c33c3989214a629f48fc9bb6421e4ce723bdf559eb2f0981c2172315ec140ccd160a10b9556a6618f2fd3383dec184352732 aspell6-mr-0.10-0.tar.bz2" |