summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorPieter Joost van de Sande2020-12-31 13:56:39 +0100
committerPieter Joost van de Sande2020-12-31 13:56:39 +0100
commitaf75a0f4ab288959553cb2ef7cc3581ec7b1ad05 (patch)
tree8909d23592232003a83d29dd08f2016d178cc0c3
downloadaur-af75a0f4ab288959553cb2ef7cc3581ec7b1ad05.tar.gz
initial release 0.5.0
-rw-r--r--.SRCINFO11
-rw-r--r--PKGBUILD13
2 files changed, 24 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO
new file mode 100644
index 000000000000..b04738a1b62c
--- /dev/null
+++ b/.SRCINFO
@@ -0,0 +1,11 @@
+pkgbase = tunl
+ pkgdesc = Expose your localhost to the public
+ pkgver = 0.5.0
+ pkgrel = 1
+ url = https://github.com/pjvds/tunl
+ arch = x86_64
+ source = https://github.com/pjvds/tunl/releases/download/0.5.0/tunl_0.5.0_Linux_x86_64.tar.gz
+ sha256sums = 0d90317f84cc96a1f28adc380008bf913f7d8a0d6a2651aa5170bc7144d87b08
+
+pkgname = tunl
+
diff --git a/PKGBUILD b/PKGBUILD
new file mode 100644
index 000000000000..2ae4953a35da
--- /dev/null
+++ b/PKGBUILD
@@ -0,0 +1,13 @@
+pkgname=tunl
+pkgver=0.5.0
+pkgrel=1
+pkgdesc='Expose your localhost to the public'
+arch=('x86_64')
+url="https://github.com/pjvds/tunl"
+makedepends=()
+source=("$url/releases/download/$pkgver/tunl_${pkgver}_Linux_x86_64.tar.gz")
+sha256sums=('0d90317f84cc96a1f28adc380008bf913f7d8a0d6a2651aa5170bc7144d87b08')
+
+package() {
+ install -Dm755 $srcdir/tunl $pkgdir/usr/bin/$pkgname
+}