summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorNils Grunwald2021-11-21 18:52:40 +0100
committerNils Grunwald2021-11-21 18:52:40 +0100
commit2371718532a1f0f4be910ff725cbb40ff3afadfb (patch)
tree1448429623ff69d44b37250b4bc3b8005f8f5808
downloadaur-2371718532a1f0f4be910ff725cbb40ff3afadfb.tar.gz
initial commit
-rw-r--r--.SRCINFO12
-rw-r--r--PKGBUILD19
2 files changed, 31 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO
new file mode 100644
index 000000000000..77cbf403b436
--- /dev/null
+++ b/.SRCINFO
@@ -0,0 +1,12 @@
+pkgbase = datalevin-bin
+ pkgdesc = Simple, fast and versatile Datalog database for everyone.
+ pkgver = 0.5.27
+ pkgrel = 1
+ url = https://github.com/juji-io/datalevin
+ arch = x86_64
+ license = EPL
+ provides = datalevin
+ source = https://github.com/juji-io/datalevin/releases/download/0.5.27/dtlv-0.5.27-ubuntu-latest-amd64.zip
+ sha256sums = 3ad2cc5f8b4c4b391a31a689c10b597fc729f523c0872e971e83dfca1de3406e
+
+pkgname = datalevin-bin
diff --git a/PKGBUILD b/PKGBUILD
new file mode 100644
index 000000000000..159964a14c2e
--- /dev/null
+++ b/PKGBUILD
@@ -0,0 +1,19 @@
+# Maintainer: Nils Grunwald <nils [@] grunwald [dot] fr>
+
+pkgname=datalevin-bin
+pkgver=0.5.27
+pkgrel=1
+pkgdesc='Simple, fast and versatile Datalog database for everyone.'
+arch=('x86_64')
+url='https://github.com/juji-io/datalevin'
+license=('EPL')
+provides=('datalevin')
+conflicts=()
+
+source=("https://github.com/juji-io/datalevin/releases/download/${pkgver}/dtlv-${pkgver}-ubuntu-latest-amd64.zip")
+
+sha256sums=('3ad2cc5f8b4c4b391a31a689c10b597fc729f523c0872e971e83dfca1de3406e')
+
+package() {
+ install -Dm755 "${srcdir}/dtlv" "${pkgdir}/usr/bin/dtlv"
+}