diff options
author | Kiyoshi Aman <kiyoshi.aman+apkfission@gmail.com> | 2018-12-13 14:31:27 -0600 |
---|---|---|
committer | Kiyoshi Aman <kiyoshi.aman+apkfission@gmail.com> | 2018-12-13 14:31:27 -0600 |
commit | 595ce315a1b8e57752e1f1d4e0010d051d6e0d3f (patch) | |
tree | 4df0c7aed70144ae1bc55e8cad76136dbc5e3d8d /user/aspell-dict-ast/APKBUILD | |
parent | acbf5d5070be5ff23d2a14be8e798da421e0d5b8 (diff) | |
download | packages-595ce315a1b8e57752e1f1d4e0010d051d6e0d3f.tar.gz packages-595ce315a1b8e57752e1f1d4e0010d051d6e0d3f.tar.bz2 packages-595ce315a1b8e57752e1f1d4e0010d051d6e0d3f.tar.xz packages-595ce315a1b8e57752e1f1d4e0010d051d6e0d3f.zip |
user/aspell-dict-ast: new package
Diffstat (limited to 'user/aspell-dict-ast/APKBUILD')
-rw-r--r-- | user/aspell-dict-ast/APKBUILD | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/user/aspell-dict-ast/APKBUILD b/user/aspell-dict-ast/APKBUILD new file mode 100644 index 000000000..c8fdd5708 --- /dev/null +++ b/user/aspell-dict-ast/APKBUILD @@ -0,0 +1,27 @@ +# Contributor: Kiyoshi Aman <kiyoshi.aman+adelie@gmail.com> +# Maintainer: Kiyoshi Aman <kiyoshi.aman+adelie@gmail.com> +pkgname=aspell-dict-ast +pkgver=0.01 +pkgrel=0 +pkgdesc="Asturian dictionaries for aspell" +url="http://aspell.net" +arch="noarch" +license="LGPL-2.1-only" +options="!check" # no tests +depends="aspell" +makedepends="debianutils-which" +source="ftp://ftp.gnu.org/gnu/aspell/dict/ast/aspell6-ast-$pkgver.tar.bz2" +builddir="$srcdir/aspell6-ast-$pkgver" + +build() { + cd "$builddir" + ./configure --vars DESTDIR="$pkgdir" + make +} + +package() { + cd "$builddir" + make DESTDIR="$pkgdir" install +} + +sha512sums="700a45c230218e57549cf4b2caaa9e86c4b8da68a3ed937fa391814816c1e0d16265d77658e209af66550e647f418663eb76952efed973e6b1f88570b90d77bc aspell6-ast-0.01.tar.bz2" |