blob: 0254c01b322caa2cc071a4b270df9adbe96f3185 (
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: Maziar Saleh Ziabari <helasraizam gmail com>
pkgname=aspell6-fa
pkgver=0.11_0
pkgrel=1
pkgdesc="Farsi dictionary for aspell"
arch=('any')
url="http://ftp.gnu.org/gnu/aspell/dict/fa/"
license=('GPL')
depends=('aspell>=0.60')
source=("ftp://ftp.gnu.org/gnu/aspell/dict/fa/$pkgname-${pkgver//_/-}.tar.bz2")
md5sums=('47c8599e529fc291a096c12f0b8372ca')
build() {
cd "$pkgname-${pkgver//_/-}"
./configure --vars DESTDIR="/usr"
make
}
package () {
cd "$pkgname-${pkgver//_/-}"
make DESTDIR="$pkgdir/" install
}
|