mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-28 23:21:53 +00:00
23 lines
649 B
Bash
23 lines
649 B
Bash
|
# $Id: PKGBUILD 33809 2009-04-04 20:26:03Z eric $
|
||
|
# Maintainer: Simo Leone <simo@archlinux.org>
|
||
|
# Contributor: Rouslan Solomakhin <rouslan@localnet.com>
|
||
|
|
||
|
pkgname=aspell-ru
|
||
|
pkgver=0.99f7
|
||
|
pkgrel=2
|
||
|
pkgdesc="Russian dictionary for aspell"
|
||
|
arch=('i686' 'x86_64')
|
||
|
url="http://aspell.net/"
|
||
|
license=('custom')
|
||
|
depends=('aspell')
|
||
|
source=(ftp://ftp.gnu.org/gnu/aspell/dict/ru/aspell6-ru-$pkgver-1.tar.bz2)
|
||
|
md5sums=('c4c98eaa5e77ad3adccbc5c96cb57cb3')
|
||
|
|
||
|
build() {
|
||
|
cd $srcdir/aspell6-ru-$pkgver-1
|
||
|
./configure || return 1
|
||
|
make || return 1
|
||
|
make DESTDIR=$pkgdir install || return 1
|
||
|
install -D -m644 Copyright $pkgdir/usr/share/licenses/$pkgname/LICENSE
|
||
|
}
|