blob: 7195479b4d279d2fc239a46402bb5a55f333ed5a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
# $Id: PKGBUILD 150495 2012-02-18 03:36:32Z allan $
# Maintainer:
# Contributor: Simo Leone <simo@archlinux.org>
# Contributor: Rouslan Solomakhin <rouslan@localnet.com>
pkgname=aspell-ru
pkgver=0.99f7
pkgrel=5
pkgdesc="Russian dictionary for aspell"
arch=('i686' 'x86_64') #We cannot use 'any' see FS#22443
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
make
}
package() {
cd $srcdir/aspell6-ru-$pkgver-1
make DESTDIR=$pkgdir install
install -D -m644 Copyright $pkgdir/usr/share/licenses/$pkgname/LICENSE
}
|