summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristian Pinedo2017-07-05 18:32:20 +0200
committerChristian Pinedo2017-07-05 18:36:08 +0200
commit7af69a278e63a28ff596cdcc2c297aea424f98e1 (patch)
treecd0ae0aa0537fffadd4d344dd98a033082f70409
downloadaur-7af69a278e63a28ff596cdcc2c297aea424f98e1.tar.gz
Initial version
-rw-r--r--.SRCINFO13
-rw-r--r--.gitignore5
-rw-r--r--PKGBUILD16
3 files changed, 34 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO
new file mode 100644
index 000000000000..0f0c4dd39bcf
--- /dev/null
+++ b/.SRCINFO
@@ -0,0 +1,13 @@
+pkgbase = keepassxc-wordlist-eyeware
+ pkgdesc = 'The Lord of the Rings'-based diceware wordlist for keepassxc
+ pkgver = 1.0
+ pkgrel = 1
+ url = https://github.com/nightsense/eyeware
+ arch = any
+ license = GPL
+ depends = keepassxc>=2.2.0
+ source = https://raw.githubusercontent.com/nightsense/eyeware/1.0/eyeware8k
+ sha256sums = a264c135bcb5b13792ea516dc93f43cb1cf364ea38167f0ef5d79a75471b5da3
+
+pkgname = keepassxc-wordlist-eyeware
+
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 000000000000..c6a9b954b0ed
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,5 @@
+*
+
+!.gitignore
+!PKGBUILD
+!.SRCINFO
diff --git a/PKGBUILD b/PKGBUILD
new file mode 100644
index 000000000000..ff5a61c91d27
--- /dev/null
+++ b/PKGBUILD
@@ -0,0 +1,16 @@
+# Maintainer: Christian Pinedo <chr.pinedo@gmail.com>
+pkgname=keepassxc-wordlist-eyeware
+pkgver=1.0
+pkgrel=1
+pkgdesc="'The Lord of the Rings'-based diceware wordlist for keepassxc"
+arch=('any')
+url="https://github.com/nightsense/eyeware"
+license=('GPL')
+depends=('keepassxc>=2.2.0')
+source=("https://raw.githubusercontent.com/nightsense/eyeware/$pkgver/eyeware8k")
+sha256sums=("a264c135bcb5b13792ea516dc93f43cb1cf364ea38167f0ef5d79a75471b5da3")
+
+package() {
+ install -Dm644 $srcdir/eyeware8k \
+ $pkgdir/usr/share/keepassxc/wordlists/eyeware.wordlist
+}