summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorKameHb-UA2022-09-27 00:31:51 +0300
committerKameHb-UA2022-09-27 00:31:51 +0300
commit5b44ee77dfe687666fcfaa660bb5c22fe85b49ce (patch)
tree2ff878a957a55690bfc9d63874e0f765779f0643
downloadaur-5b44ee77dfe687666fcfaa660bb5c22fe85b49ce.tar.gz
16.4.3
-rw-r--r--.SRCINFO11
-rw-r--r--.gitignore1
-rw-r--r--PKGBUILD20
3 files changed, 32 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO
new file mode 100644
index 000000000000..44dbba874e70
--- /dev/null
+++ b/.SRCINFO
@@ -0,0 +1,11 @@
+pkgbase = qodejs-bin
+ pkgdesc = Lightly modified fork of Node.js that allows injecting a third party event loop alongside Node's event loop
+ pkgver = 16.4.3
+ pkgrel = 1
+ url = https://nodegui.org/
+ arch = x86_64
+ license = Custom
+ source = https://github.com/nodegui/qodejs/releases/download/v16.4.3-qode/v16.4.3-qode-linux-x64.tar.gz
+ sha256sums = 92099e1f221942bb40cc24e2faec4cc8e9e50078b0ca9144d79a2bddb6ef7f16
+
+pkgname = qodejs-bin
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 000000000000..72e8ffc0db8a
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1 @@
+*
diff --git a/PKGBUILD b/PKGBUILD
new file mode 100644
index 000000000000..da9b2b4bfb3c
--- /dev/null
+++ b/PKGBUILD
@@ -0,0 +1,20 @@
+pkgname=qodejs-bin
+pkgver=16.4.3
+pkgrel=1
+pkgdesc="Lightly modified fork of Node.js that allows injecting a third party event loop alongside Node's event loop"
+arch=(
+ x86_64
+)
+depends=(
+)
+makedepends=(
+)
+url='https://nodegui.org/'
+license=('Custom')
+source=("https://github.com/nodegui/qodejs/releases/download/v$pkgver-qode/v$pkgver-qode-linux-x64.tar.gz")
+sha256sums=('92099e1f221942bb40cc24e2faec4cc8e9e50078b0ca9144d79a2bddb6ef7f16')
+
+package() {
+ mkdir -p "$pkgdir/usr/bin"
+ cp "$srcdir/qode" "$pkgdir/usr/bin/qode"
+}