mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-28 23:21:53 +00:00
22 lines
608 B
Bash
22 lines
608 B
Bash
|
# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
|
||
|
#Maintainer: Angel 'angvp' Velasquez <angvp[at]archlinux.com.ve>
|
||
|
#Contributor: Angel 'angvp' Velasquez <angvp[at]archlinux.com.ve>
|
||
|
pkgname=aspell-ca
|
||
|
pkgver=20040130
|
||
|
pkgrel=3
|
||
|
arch=('i686' 'x86_64')
|
||
|
pkgdesc="Catalan dictionary for aspell"
|
||
|
depends=('aspell')
|
||
|
url="http://aspell.net/"
|
||
|
license=('GPL2')
|
||
|
source=(ftp://ftp.gnu.org/gnu/aspell/dict/ca/aspell6-ca-$pkgver-1.tar.bz2)
|
||
|
md5sums=('5dfeebdfbe68556e70abfa95dd775263')
|
||
|
|
||
|
build() {
|
||
|
cd $startdir/src/aspell6-ca-$pkgver-1
|
||
|
./configure
|
||
|
/usr/bin/make || return 1
|
||
|
/usr/bin/make DESTDIR=$startdir/pkg install
|
||
|
}
|
||
|
|