summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authormsantos2015-07-14 21:55:29 +0100
committermsantos2015-07-14 21:55:29 +0100
commit2207bbb170e3bdfd728dd13c063ff6932a9b2759 (patch)
tree41e0be0ae9261fd739e2b51ccb293d12605a86b6
downloadaur-2207bbb170e3bdfd728dd13c063ff6932a9b2759.tar.gz
Initial commit
-rw-r--r--.SRCINFO14
-rw-r--r--PKGBUILD20
2 files changed, 34 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO
new file mode 100644
index 000000000000..a2f2b63ecba8
--- /dev/null
+++ b/.SRCINFO
@@ -0,0 +1,14 @@
+pkgbase = hyphen-en-us
+ pkgdesc = English hyphenation rules (en_US only)
+ pkgver = 2.8.8
+ pkgrel = 1
+ url = http://hunspell.sf.net
+ arch = any
+ license = GPL2
+ license = LGPL2.1
+ license = MPL
+ source = http://downloads.sourceforge.net/hunspell/hyphen-2.8.8.tar.gz
+ sha1sums = 0556c392beb59433e577e3517575801212201df6
+
+pkgname = hyphen-en-us
+
diff --git a/PKGBUILD b/PKGBUILD
new file mode 100644
index 000000000000..433c742f3338
--- /dev/null
+++ b/PKGBUILD
@@ -0,0 +1,20 @@
+# $Id: PKGBUILD 222148 2014-09-20 07:31:15Z andyrtr $
+# Maintainer: AndyRTR <andyrtr@archlinux.org>
+
+pkgname='hyphen-en-us'
+pkgver=2.8.8
+pkgrel=1
+arch=('any')
+url="http://hunspell.sf.net"
+license=('GPL2' 'LGPL2.1' 'MPL')
+pkgdesc="English hyphenation rules (en_US only)"
+source=(http://downloads.sourceforge.net/hunspell/hyphen-${pkgver}.tar.gz)
+sha1sums=('0556c392beb59433e577e3517575801212201df6')
+
+package() {
+ cd hyphen-${pkgver}
+ install -Dm755 hyph_en_US.dic ${pkgdir}/usr/share/hyphen/hyph_en_US.dic
+ install -dm755 ${pkgdir}/usr/share/myspell/dicts
+ cd ${pkgdir}/usr/share/myspell/dicts
+ ln -sv /usr/share/hyphen/hyph_en_US.dic .
+}