mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
22 lines
632 B
Bash
22 lines
632 B
Bash
# $Id: PKGBUILD 33744 2009-04-04 19:05:46Z eric $
|
|
# Maintainer: Simo Leone <simo@archlinux.org>
|
|
# Contributor: Tobias Kieslich <tobias@justdreams.de>
|
|
|
|
pkgname=aspell-nl
|
|
pkgver=0.50
|
|
pkgrel=4
|
|
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 || return 1
|
|
make || return 1
|
|
make DESTDIR=$pkgdir install || return 1
|
|
install -D -m644 Copyright $pkgdir/usr/share/licenses/$pkgname/LICENSE
|
|
}
|