blob: b125b9d9e926741e252e2f3ac6260198950256fb (
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 215926 2014-07-01 00:50:58Z fyan $
# Maintainer:
# Contributor: Simo Leone <simo@archlinux.org>
# Contributor: Rouslan Solomakhin <rouslan@localnet.com>
pkgname=aspell-ru
pkgver=0.99f7
pkgrel=6
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
}
|