summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorBart de Waal2020-11-21 23:26:03 +0100
committerBart de Waal2020-11-21 23:31:55 +0100
commit03ca894c793580d6432772fc2eb9056a9d9aab96 (patch)
tree125531725857e86f76e492be1345371097321f33
downloadaur-03ca894c793580d6432772fc2eb9056a9d9aab96.tar.gz
Add Opentaal Wordlist PKGBUILD
-rw-r--r--.SRCINFO13
-rw-r--r--PKGBUILD16
2 files changed, 29 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO
new file mode 100644
index 000000000000..2c64eb868a08
--- /dev/null
+++ b/.SRCINFO
@@ -0,0 +1,13 @@
+pkgbase = words-nl
+ pkgdesc = A wordlist of dutch words for /usr/share/dict/.
+ pkgver = 20201121
+ pkgrel = 1
+ url = https://github.com/OpenTaal/opentaal-wordlist
+ arch = any
+ license = CCPL:by-sa
+ makedepends = git
+ source = git+https://github.com/OpenTaal/opentaal-wordlist.git#branch=master
+ md5sums = SKIP
+
+pkgname = words-nl
+
diff --git a/PKGBUILD b/PKGBUILD
new file mode 100644
index 000000000000..6c97f15c984a
--- /dev/null
+++ b/PKGBUILD
@@ -0,0 +1,16 @@
+# Maintainer: Bart de Waal <bart@abnormail.org>
+pkgname=words-nl
+pkgver=20201121
+pkgrel=1
+pkgdesc="A wordlist of dutch words for /usr/share/dict/."
+arch=('any')
+url="https://github.com/OpenTaal/opentaal-wordlist"
+license=(CCPL:by-sa)
+makedepends=(git)
+source=("git+https://github.com/OpenTaal/opentaal-wordlist.git#branch=master")
+md5sums=('SKIP')
+
+package() {
+ cd "$srcdir"
+ install -Dm644 opentaal-wordlist/wordlist.txt "$pkgdir/usr/share/dict/dutch"
+}