summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorDimitris Kiziridis2020-03-31 01:26:26 +0300
committerDimitris Kiziridis2020-03-31 01:26:26 +0300
commitc5668292920dea0224db65a52f5e9fb8700fbe66 (patch)
treeafe01838faea4701194d3b85e66c05a5ac930996
downloadaur-c5668292920dea0224db65a52f5e9fb8700fbe66.tar.gz
Initial commmit
-rw-r--r--.SRCINFO13
-rw-r--r--PKGBUILD20
2 files changed, 33 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO
new file mode 100644
index 000000000000..b8d0898bd35a
--- /dev/null
+++ b/.SRCINFO
@@ -0,0 +1,13 @@
+pkgbase = zek-bin
+ pkgdesc = Generate a Go struct from XML
+ pkgver = 0.1.9
+ pkgrel = 1
+ url = https://github.com/miku/zek
+ arch = x86_64
+ license = GPL-3.0
+ provides = zek
+ source = https://github.com/miku/zek/releases/download/v0.1.9/zek_0.1.9_amd64.deb
+ md5sums = 209edfd497230c80663165fca98ede05
+
+pkgname = zek-bin
+
diff --git a/PKGBUILD b/PKGBUILD
new file mode 100644
index 000000000000..97e0f972f99c
--- /dev/null
+++ b/PKGBUILD
@@ -0,0 +1,20 @@
+# Maintainer: Dimitris Kiziridis <ragouel at outlook dot com>
+
+pkgname=zek-bin
+pkgver=0.1.9
+pkgrel=1
+pkgdesc="Generate a Go struct from XML"
+arch=('x86_64')
+url='https://github.com/miku/zek'
+license=('GPL-3.0')
+provides=('zek')
+source=("https://github.com/miku/zek/releases/download/v${pkgver}/zek_${pkgver}_amd64.deb")
+md5sums=('209edfd497230c80663165fca98ede05')
+
+package() {
+ cd "${srcdir}"
+ tar xf data.tar.xz -C "${pkgdir}"
+ cd ${pkgdir}/usr
+ mv sbin bin
+ chmod 755 bin/zek
+} \ No newline at end of file