summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorKaan Kasım2015-08-12 14:42:01 +0300
committerKaan Kasım2015-08-12 14:42:01 +0300
commitb78dabbfacfbec38040b7cd481ce04dcbb301dbd (patch)
tree5c8b81a10c2517e530ce49ef88eedd14ccd11e90
downloadaur-b78dabbfacfbec38040b7cd481ce04dcbb301dbd.tar.gz
Initial import
-rw-r--r--.SRCINFO14
-rw-r--r--PKGBUILD24
2 files changed, 38 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO
new file mode 100644
index 000000000000..cd39cb0b984c
--- /dev/null
+++ b/.SRCINFO
@@ -0,0 +1,14 @@
+pkgbase = hunspell-tr
+ pkgdesc = Turkish Dictionary for Hunspell
+ pkgver = 0.1
+ pkgrel = 4
+ url = http://tr-spell.googlecode.com/
+ arch = any
+ license = LGPL
+ license = BSD
+ depends = hunspell
+ source = http://tr-spell.googlecode.com/files/Hunspell_tr_TR_v.0.1.zip
+ md5sums = 774eae07421f2823898a2a423245b472
+
+pkgname = hunspell-tr
+
diff --git a/PKGBUILD b/PKGBUILD
new file mode 100644
index 000000000000..c97acb9fb5b5
--- /dev/null
+++ b/PKGBUILD
@@ -0,0 +1,24 @@
+# Contributor: btg <btgunes at gmail dot com>
+
+pkgname=hunspell-tr
+pkgver=0.1
+pkgrel=4
+pkgdesc="Turkish Dictionary for Hunspell"
+arch=('any')
+url="http://tr-spell.googlecode.com/"
+license=('LGPL' 'BSD')
+depends=('hunspell')
+source=(http://tr-spell.googlecode.com/files/Hunspell_tr_TR_v.0.1.zip)
+md5sums=('774eae07421f2823898a2a423245b472')
+
+package() {
+ cd $srcdir
+ install -D -m644 tr.dic $pkgdir/usr/share/hunspell/tr_TR.dic
+ install -D -m644 tr.aff $pkgdir/usr/share/hunspell/tr_TR.aff
+ install -D -m644 README $pkgdir/usr/share/doc/hunspell-tr/README
+ install -dm755 ${pkgdir}/usr/share/myspell/dicts
+ pushd $pkgdir/usr/share/myspell/dicts
+ for file in $pkgdir/usr/share/hunspell/*; do
+ ln -sv /usr/share/hunspell/$(basename $file) .
+ done
+}