summaryrefslogtreecommitdiff
path: root/extra/aspell-ru
diff options
context:
space:
mode:
authorParabola <dev@list.parabolagnulinux.org>2011-04-05 14:26:38 +0000
committerParabola <dev@list.parabolagnulinux.org>2011-04-05 14:26:38 +0000
commit415856bdd4f48ab4f2732996f0bae58595092bbe (patch)
treeede2018b591f6dfb477fe9341ba17b9bc000fab9 /extra/aspell-ru
Tue Apr 5 14:26:38 UTC 2011
Diffstat (limited to 'extra/aspell-ru')
-rw-r--r--extra/aspell-ru/PKGBUILD28
1 files changed, 28 insertions, 0 deletions
diff --git a/extra/aspell-ru/PKGBUILD b/extra/aspell-ru/PKGBUILD
new file mode 100644
index 000000000..23b286b01
--- /dev/null
+++ b/extra/aspell-ru/PKGBUILD
@@ -0,0 +1,28 @@
+# $Id: PKGBUILD 106233 2011-01-15 15:11:50Z andrea $
+# Maintainer:
+# Contributor: Simo Leone <simo@archlinux.org>
+# Contributor: Rouslan Solomakhin <rouslan@localnet.com>
+
+pkgname=aspell-ru
+pkgver=0.99f7
+pkgrel=4
+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
+}