diff options
author | Luke Shumaker <LukeShu@sbcglobal.net> | 2012-04-11 20:31:43 -0400 |
---|---|---|
committer | Luke Shumaker <LukeShu@sbcglobal.net> | 2012-04-11 20:31:43 -0400 |
commit | 5f338c195e399f2c2486e06be0851d4f597162d7 (patch) | |
tree | 4c144c54bbd85fa2e641d219275045bae11cb4c3 /libre/aspell-pl-libre/PKGBUILD | |
parent | 158b35a711165b70a2b718b01cbc261ba50a5cf1 (diff) | |
parent | 7e431bf14475a0539a570ce18d290d04427c194c (diff) |
Merge branch 'master' of ssh://parabolagnulinux.org:1863/abslibre
Diffstat (limited to 'libre/aspell-pl-libre/PKGBUILD')
-rw-r--r-- | libre/aspell-pl-libre/PKGBUILD | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/libre/aspell-pl-libre/PKGBUILD b/libre/aspell-pl-libre/PKGBUILD index f932a95d1..6da90e449 100644 --- a/libre/aspell-pl-libre/PKGBUILD +++ b/libre/aspell-pl-libre/PKGBUILD @@ -2,9 +2,11 @@ # $Id: PKGBUILD 43278 2011-03-24 13:25:37Z andrea $ # Maintainer: Jaroslaw Swierczynski <swiergot@aur.archlinux.org> # Contributor: Arkadiusz Laczynski <alaczynski@gmail.com> +# Contributor (Parabola): Jorge Lopez <jorginho@adinet.com.uy> +_pkgname=aspell-pl pkgname=aspell-pl-libre -pkgver=20110907 +pkgver=20111117 pkgrel=1 pkgdesc="Polish dictionary for aspell" arch=('i686' 'x86_64') @@ -14,20 +16,18 @@ depends=('aspell') replaces=('aspell-pl') conflicts=('aspell-pl') provides=('aspell-pl') -_sourcename=sjp-aspell6-pl-6.0_$pkgver-0.tar.bz2 -source=("http://repo.parabolagnulinux.org/other/${_sourcename}") -md5sums=('e1bb7627b553666ff6703bfbc3528c1a') - -# Upstream publishes only the newest daily snapshot of the source, so -# we need to mirror it. -mksource() { - [ -f ${_sourcename} ] || wget http://sjp.pl/slownik/ort/${_sourcename} -} +source=("ftp://ftp.archlinux.org/other/community/$_pkgname/sjp-aspell6-pl-6.0_$pkgver-0.tar.bz2") +md5sums=('27aa9ca734d7049238399c279c5417fb') build() { cd "$srcdir/aspell6-pl-6.0_$pkgver-0" ./configure make +} + +package() { + cd "$srcdir/aspell6-pl-6.0_$pkgver-0" + make DESTDIR="$pkgdir" install } |