diff options
author | Kiyoshi Aman <kiyoshi.aman+apkfission@gmail.com> | 2018-12-13 15:05:57 -0600 |
---|---|---|
committer | Kiyoshi Aman <kiyoshi.aman+apkfission@gmail.com> | 2018-12-13 15:05:57 -0600 |
commit | a34d8d9340c1d7117e983cd679914105293f8e07 (patch) | |
tree | 7080f87a5cd3dfd2a336d5fc4246fc5ce4fc3636 | |
parent | 0e3db2d05f5b84a1f091be0a6418103192de6bc3 (diff) | |
download | packages-a34d8d9340c1d7117e983cd679914105293f8e07.tar.gz packages-a34d8d9340c1d7117e983cd679914105293f8e07.tar.bz2 packages-a34d8d9340c1d7117e983cd679914105293f8e07.tar.xz packages-a34d8d9340c1d7117e983cd679914105293f8e07.zip |
user/aspell-dict-bn: new package
-rw-r--r-- | user/aspell-dict-bn/APKBUILD | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/user/aspell-dict-bn/APKBUILD b/user/aspell-dict-bn/APKBUILD new file mode 100644 index 000000000..56be451fa --- /dev/null +++ b/user/aspell-dict-bn/APKBUILD @@ -0,0 +1,28 @@ +# Contributor: Kiyoshi Aman <kiyoshi.aman+adelie@gmail.com> +# Maintainer: Kiyoshi Aman <kiyoshi.aman+adelie@gmail.com> +pkgname=aspell-dict-bn +pkgver=0.01.1 +_pkgver=$pkgver-1 +pkgrel=0 +pkgdesc="Bengali dictionaries for aspell" +url="http://aspell.net" +arch="noarch" +license="GPL-2.0-only" +options="!check" # no tests +depends="aspell" +makedepends="debianutils-which" +source="ftp://ftp.gnu.org/gnu/aspell/dict/bn/aspell6-bn-$_pkgver.tar.bz2" +builddir="$srcdir/aspell6-bn-$_pkgver" + +build() { + cd "$builddir" + ./configure --vars DESTDIR="$pkgdir" + make +} + +package() { + cd "$builddir" + make DESTDIR="$pkgdir" install +} + +sha512sums="d8fe29b100284aa6b2e909811b9eb09bd5decea4c056f2ed6a24de9d5adb48714827a2e892fdf38274d1e1a44b2a93415fccf90b4c4d85512f3052c7f7939d22 aspell6-bn-0.01.1-1.tar.bz2" |