summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorMartin T. H. Sandsmark2016-05-06 16:12:37 +0200
committerMartin T. H. Sandsmark2016-05-06 16:12:37 +0200
commitea25026a0282040f3bbf4bae375899593527f5fe (patch)
tree52b40a928ad0c1bc91525a303eb65eca4dcef2a4
downloadaur-ea25026a0282040f3bbf4bae375899593527f5fe.tar.gz
initial import
-rw-r--r--.SRCINFO13
-rw-r--r--PKGBUILD26
2 files changed, 39 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO
new file mode 100644
index 000000000000..c5d7ac095a87
--- /dev/null
+++ b/.SRCINFO
@@ -0,0 +1,13 @@
+pkgbase = hyphen-nb
+ pkgdesc = Norwegian hyphenation rules
+ pkgver = 2.2
+ pkgrel = 1
+ url = http://no.speling.org/
+ arch = any
+ license = GPL
+ depends = hyphen
+ source = https://alioth.debian.org/frs/download.php/file/4168/no_NO-pack2-2.2.zip
+ md5sums = 256d6fe2ea5f1842090d7d05e90c5383
+
+pkgname = hyphen-nb
+
diff --git a/PKGBUILD b/PKGBUILD
new file mode 100644
index 000000000000..1d0433f29ffd
--- /dev/null
+++ b/PKGBUILD
@@ -0,0 +1,26 @@
+# Maintainer: Martin Sandsmark <martin.sandsmark@kde.org>
+
+pkgname=hyphen-nb
+pkgver=2.2
+pkgrel=1
+pkgdesc='Norwegian hyphenation rules'
+arch=('any')
+url='http://no.speling.org/'
+depends=('hyphen')
+license=('GPL')
+source=("https://alioth.debian.org/frs/download.php/file/4168/no_NO-pack2-2.2.zip")
+
+build() {
+ unzip hyph_nb_NO.zip
+}
+
+package() {
+ install -dm755 ${pkgdir}/usr/share/hyphen
+ install -m644 hyph_nb_NO.dic $pkgdir/usr/share/hyphen
+
+
+ install -dm755 ${pkgdir}/usr/share/myspell/dicts
+ ln -sv /usr/share/hyphen/hyph_nb_NO.dic ${pkgdir}/usr/share/myspell/dicts/
+}
+
+md5sums=('256d6fe2ea5f1842090d7d05e90c5383')