summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorDimitris Kiziridis2020-06-21 12:16:42 +0300
committerDimitris Kiziridis2020-06-21 12:16:42 +0300
commitcea95fe793b2b3db5a79758d1eeba9c12fdc5e91 (patch)
tree9bd1fbd14574d2e4ae7a4536a51804c151294a41
downloadaur-cea95fe793b2b3db5a79758d1eeba9c12fdc5e91.tar.gz
Initial commit
-rw-r--r--.SRCINFO14
-rw-r--r--PKGBUILD17
2 files changed, 31 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO
new file mode 100644
index 000000000000..d78dfcab2f0e
--- /dev/null
+++ b/.SRCINFO
@@ -0,0 +1,14 @@
+pkgbase = punch-bin
+ pkgdesc = Holepunch CLI Tool
+ pkgver = 0.2.2
+ pkgrel = 1
+ url = https://holepunch.io
+ arch = x86_64
+ license = GPL3
+ depends = glibc
+ provides = punch
+ source = punch-bin-0.2.2.zip::https://github.com/CypherpunkArmory/punch/releases/download/0.2.2/punch-linux-amd64.zip
+ sha256sums = 7b2c10154692a95ee72fc7f9a9487efc934d519afad7a0f9c57b4d3105d5e26f
+
+pkgname = punch-bin
+
diff --git a/PKGBUILD b/PKGBUILD
new file mode 100644
index 000000000000..7a856276d98a
--- /dev/null
+++ b/PKGBUILD
@@ -0,0 +1,17 @@
+# Maintainer: Dimitris Kiziridis <ragouel at outlook dot com>
+
+pkgname=punch-bin
+pkgver=0.2.2
+pkgrel=1
+pkgdesc="Holepunch CLI Tool"
+arch=('x86_64')
+url='https://holepunch.io'
+license=('GPL3')
+provides=('punch')
+depends=('glibc')
+source=("${pkgname}-${pkgver}.zip::https://github.com/CypherpunkArmory/punch/releases/download/${pkgver}/punch-linux-amd64.zip")
+sha256sums=('7b2c10154692a95ee72fc7f9a9487efc934d519afad7a0f9c57b4d3105d5e26f')
+
+package() {
+ install -Dm755 punch -t "${pkgdir}/usr/bin"
+} \ No newline at end of file