blob: bd5c47f8104ff3214d3cd915a008490ebd3a42d3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Maintainer: Dopustim Vladimir <dopustimvladimir@gmail.com>
pkgname=aspell6-ky
pkgver=0.01
pkgrel=1
pkgdesc="Kyrgyz dictionary for aspell"
arch=("any")
depends=("aspell>=0.60")
url="http://aspell.net/"
license=("GPL")
source=(ftp://ftp.gnu.org/gnu/aspell/dict/ky/${pkgname}-${pkgver}-0.tar.bz2)
md5sums=(83ed490464521361867546f9ad4cbaf2)
build() {
cd ${pkgname}-${pkgver}-0
./configure
make
}
package() {
cd ${pkgname}-${pkgver}-0
make DESTDIR=${pkgdir} install
}
|