diff options
author | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
---|---|---|
committer | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
commit | 415856bdd4f48ab4f2732996f0bae58595092bbe (patch) | |
tree | ede2018b591f6dfb477fe9341ba17b9bc000fab9 /extra/aspell-fr/PKGBUILD |
Tue Apr 5 14:26:38 UTC 2011
Diffstat (limited to 'extra/aspell-fr/PKGBUILD')
-rw-r--r-- | extra/aspell-fr/PKGBUILD | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/extra/aspell-fr/PKGBUILD b/extra/aspell-fr/PKGBUILD new file mode 100644 index 000000000..ef91b7513 --- /dev/null +++ b/extra/aspell-fr/PKGBUILD @@ -0,0 +1,26 @@ +# $Id: PKGBUILD 116613 2011-03-24 13:03:29Z andrea $ +# Maintainer: +# Contributor: Simo Leone <simo@archlinux.org> +# Contributor: Eric Johnson <eric@coding-zone.com> + +pkgname=aspell-fr +pkgver=0.50.3 +pkgrel=5 +pkgdesc="French dictionary for aspell" +arch=('i686' 'x86_64') +url="http://aspell.net/" +license=('GPL') +depends=('aspell') +source=(ftp://ftp.gnu.org/gnu/aspell/dict/fr/$pkgname-0.50-3.tar.bz2) +md5sums=('53a2d05c4e8f7fabd3cefe24db977be7') + +build() { + cd $srcdir/$pkgname-0.50-3 + ./configure + make +} + +package() { + cd $srcdir/$pkgname-0.50-3 + make DESTDIR=$pkgdir install +} |