blob: 28439b45412e70a54023b010b1952cfb2b5ecca6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
# $Id: PKGBUILD 150491 2012-02-18 03:32:06Z allan $
# Maintainer:
# Contributor: Simo Leone <simo@archlinux.org>
# Contributor: Tobias Kieslich <tobias@justdreams.de>
pkgname=aspell-nl
pkgver=0.50.2
pkgrel=2
pkgdesc="Dutch dictionary for aspell"
arch=('i686' 'x86_64')
url="http://aspell.net/"
license=('custom')
depends=('aspell')
source=(ftp://ftp.gnu.org/gnu/aspell/dict/nl/$pkgname-0.50-2.tar.bz2)
md5sums=('c3ef9fd7dc4c47d816eee9ef5149c76a')
build() {
cd $srcdir/$pkgname-0.50-2
./configure
make
}
package() {
cd $srcdir/$pkgname-0.50-2
make DESTDIR=$pkgdir install
install -D -m644 Copyright $pkgdir/usr/share/licenses/$pkgname/LICENSE
}
|