diff options
Diffstat (limited to 'community/aspell-pl/PKGBUILD')
-rw-r--r-- | community/aspell-pl/PKGBUILD | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/community/aspell-pl/PKGBUILD b/community/aspell-pl/PKGBUILD index 0cee080a9..b96f9ac35 100644 --- a/community/aspell-pl/PKGBUILD +++ b/community/aspell-pl/PKGBUILD @@ -1,9 +1,9 @@ -# $Id: PKGBUILD 43278 2011-03-24 13:25:37Z andrea $ +# $Id: PKGBUILD 57128 2011-10-22 10:35:07Z bpiotrowski $ # Maintainer: Jaroslaw Swierczynski <swiergot@aur.archlinux.org> # Contributor: Arkadiusz Laczynski <alaczynski@gmail.com> pkgname=aspell-pl -pkgver=20110324 +pkgver=20111022 pkgrel=1 pkgdesc="Polish dictionary for aspell" arch=('i686' 'x86_64') @@ -11,12 +11,17 @@ url="http://www.sjp.pl/slownik/en/" license=('GPL' 'LGPL' 'MPL') depends=('aspell') source=(http://sjp.pl/slownik/ort/sjp-aspell6-pl-6.0_$pkgver-0.tar.bz2) -md5sums=('5f4e91bcbcf525945679064127e263c8') +md5sums=('7f14136d18152bde46bfef34e5088349') build() { cd "$srcdir/aspell6-pl-6.0_$pkgver-0" ./configure make +} + +package() { + cd "$srcdir/aspell6-pl-6.0_$pkgver-0" + make DESTDIR="$pkgdir" install } |