mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-06 14:07:13 +08:00
22 lines
556 B
Bash
22 lines
556 B
Bash
|
# $Id: PKGBUILD 32300 2009-03-30 03:24:12Z eric $
|
||
|
# Maintainer: Simo Leone <simo@archlinux.org>
|
||
|
# Contributor: Eric Johnson <eric@coding-zone.com>
|
||
|
|
||
|
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
|
||
|
}
|