summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorDenis Kasak2019-04-18 12:27:46 +0200
committerDenis Kasak2019-04-18 12:27:46 +0200
commit7e66c3df556ff51266dfd39e6c228384c48c9aeb (patch)
tree2b4835eb8167f9e45fa9bdd7809e45289ebeae97
downloadaur-7e66c3df556ff51266dfd39e6c228384c48c9aeb.tar.gz
Initial version.
-rw-r--r--.SRCINFO18
-rw-r--r--PKGBUILD21
2 files changed, 39 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO
new file mode 100644
index 000000000000..dd8f818fd9f7
--- /dev/null
+++ b/.SRCINFO
@@ -0,0 +1,18 @@
+# Generated by mksrcinfo v8
+# Thu Apr 18 10:27:34 UTC 2019
+pkgbase = english-wordnet
+ pkgdesc = A fork of the Princeton Wordnet developed under an open source methodology.
+ pkgver = 2019
+ pkgrel = 1
+ url = https://en-word.net/
+ arch = i686
+ arch = x86_64
+ license = custom
+ provides = wordnet-common
+ source = https://en-word.net/static/english-wordnet-2019.zip
+ source = https://raw.githubusercontent.com/globalwordnet/english-wordnet/master/LICENSE.md
+ sha256sums = 291953e88354dd02c2923f4ee358bb8fdb09201922f9f26f79d6af0c6d8c5fe1
+ sha256sums = 7b0d0710f8bf85777bc233a88802cf84c091a6226717ee71f6adde3b9af542c5
+
+pkgname = english-wordnet
+
diff --git a/PKGBUILD b/PKGBUILD
new file mode 100644
index 000000000000..b0159ebcb562
--- /dev/null
+++ b/PKGBUILD
@@ -0,0 +1,21 @@
+# Maintainer: Denis Kasak <dkasak AT termina.org.uk>
+
+pkgname=english-wordnet
+pkgdesc="A fork of the Princeton Wordnet developed under an open source methodology."
+pkgver=2019
+pkgrel=1
+arch=('i686' 'x86_64')
+# conflicts=(wordnet-common)
+provides=(wordnet-common)
+url="https://en-word.net/"
+license=("custom")
+source=("https://en-word.net/static/english-wordnet-${pkgver}.zip"
+ "https://raw.githubusercontent.com/globalwordnet/english-wordnet/master/LICENSE.md")
+sha256sums=('291953e88354dd02c2923f4ee358bb8fdb09201922f9f26f79d6af0c6d8c5fe1'
+ '7b0d0710f8bf85777bc233a88802cf84c091a6226717ee71f6adde3b9af542c5')
+
+package() {
+ install -d -m 755 "${pkgdir}/usr/share/wordnet/dict"
+ install "${srcdir}"/wndb/* "${pkgdir}/usr/share/wordnet/dict"
+ install -D -m644 LICENSE.md "${pkgdir}/usr/share/licenses/$pkgname/LICENSE"
+}