summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorErikas2015-10-04 00:19:05 +0300
committerErikas2015-10-04 00:19:05 +0300
commitef7388eed72f4db4a52fbb9e27f02ed52b39b2ff (patch)
treebc2e803441c8e5b7c1d9cb35d0ae0c3113f7ccf0
downloadaur-ef7388eed72f4db4a52fbb9e27f02ed52b39b2ff.tar.gz
Initial import
-rw-r--r--.SRCINFO14
-rw-r--r--PKGBUILD23
2 files changed, 37 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO
new file mode 100644
index 000000000000..05f9481c09b1
--- /dev/null
+++ b/.SRCINFO
@@ -0,0 +1,14 @@
+pkgbase = hunspell-lt
+ pkgdesc = Lithuanian dictionary for Hunspell
+ pkgver = 20080216
+ pkgrel = 1
+ arch = any
+ license = GPL2
+ license = LGPL2.1
+ license = MPL
+ optdepends = hunspell: Hunspell spell checking library and program
+ source = http://pkgs.fedoraproject.org/repo/pkgs/hunspell-lt/lt_LT-1.2.zip/48e27f6c26e8c72ca11f34526786fd1b/lt_LT-1.2.zip
+ md5sums = 48e27f6c26e8c72ca11f34526786fd1b
+
+pkgname = hunspell-lt
+
diff --git a/PKGBUILD b/PKGBUILD
new file mode 100644
index 000000000000..3789ebb403ff
--- /dev/null
+++ b/PKGBUILD
@@ -0,0 +1,23 @@
+# Maintainer: Erikas <erikmnkl@gmail.com>
+
+pkgname=hunspell-lt
+pkgver=20080216
+pkgrel=1
+pkgdesc="Lithuanian dictionary for Hunspell"
+arch=('any')
+license=('GPL2' 'LGPL2.1' 'MPL')
+optdepends=('hunspell: Hunspell spell checking library and program')
+source=(http://pkgs.fedoraproject.org/repo/pkgs/hunspell-lt/lt_LT-1.2.zip/48e27f6c26e8c72ca11f34526786fd1b/lt_LT-1.2.zip)
+md5sums=('48e27f6c26e8c72ca11f34526786fd1b')
+
+package() {
+ cd "$srcdir"/lt_LT-1.2
+
+ install -d -m755 "$pkgdir"/usr/share/hunspell
+ install -m644 lt_LT.dic "$pkgdir"/usr/share/hunspell/lt_LT.dic
+ install -m644 lt_LT.aff "$pkgdir"/usr/share/hunspell/lt_LT.aff
+
+ install -d -m755 "$pkgdir"/usr/share/myspell/dicts
+ ln -s /usr/share/hunspell/lt_LT.dic "$pkgdir"/usr/share/myspell/dicts/lt_LT.dic
+ ln -s /usr/share/hunspell/lt_LT.aff "$pkgdir"/usr/share/myspell/dicts/lt_LT.aff
+}