core/aspell-fr/PKGBUILD

27 lines
700 B
Bash

#
# Platform Packages for Chakra, part of chakra-project.org
#
# maintainer (i686): Phil Miller <philm[at]chakra-project[dog]org>
# maintainer (x86_64): Manuel Tortosa <manutortosa[at]chakra-project[dot]org>
# include global config
source ../_buildscripts/${current_repo}-${_arch}-cfg.conf
pkgname=aspell-fr
pkgver=0.50.3
pkgrel=3
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 || return 1
make || return 1
make DESTDIR=$pkgdir install || return 1
}