summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorPieter Joost van de Sande2021-01-12 11:10:04 +0100
committerPieter Joost van de Sande2021-01-12 11:10:22 +0100
commit3eea6cf297688cefa75bb06d8c50e46bb944a766 (patch)
tree1fd98019008c6e1fc2383d216f72c459c1c9860c
parent85cc91fdf787b5f535fdaf26c3e631c00cc0e3ff (diff)
downloadaur-3eea6cf297688cefa75bb06d8c50e46bb944a766.tar.gz
bump to version 0.19.2
-rw-r--r--.SRCINFO6
-rw-r--r--PKGBUILD12
2 files changed, 8 insertions, 10 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 4da01dd3178c..759dda59a9d7 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,11 +1,11 @@
pkgbase = tunl
pkgdesc = Expose your localhost to the public
- pkgver = 0.19.0
+ pkgver = 0.19.2
pkgrel = 1
url = https://github.com/pjvds/tunl
arch = x86_64
- source = https://github.com/pjvds/tunl/releases/download/0.19.0/tunl_0.19.0_Linux_x86_64.tar.gz
- sha256sums = efe23dc9abcdcbe86ee2f1727ba440604b0dd578e49bdce5cf47949118e80da1
+ source = https://github.com/pjvds/tunl/releases/download/0.19.2/tunl_0.19.2_Linux_x86_64.tar.gz
+ sha256sums = 42eb5a263d9e3e479d3335483b9d29d95c64de6ba71e80cf676221f73676e4c3
pkgname = tunl
diff --git a/PKGBUILD b/PKGBUILD
index 0f15b6682365..639e13f6b113 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,18 +1,16 @@
pkgname=tunl
-pkgver=0.19.0
+pkgver=0.19.2
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=('efe23dc9abcdcbe86ee2f1727ba440604b0dd578e49bdce5cf47949118e80da1')
+sha256sums=('42eb5a263d9e3e479d3335483b9d29d95c64de6ba71e80cf676221f73676e4c3')
package() {
- cd "${srcdir}"
+ install -Dm755 ./tunl "${pkgdir}/usr/bin/tunl"
- install -Dm755 tunl $pkgdir/usr/bin/tunl
-
- install -Dm644 autocomplete/bash/tunl "{pkgdir}/etc/bash_completion.d/tunl"
- install -Dm644 autocomplete/zsh/tunl "{pkgdir}/usr/share/zsh/site-functions/_tunl"
+ install -Dm644 ./autocomplete/bash/tunl "${pkgdir}/etc/bash_completion.d/tunl"
+ install -Dm644 ./autocomplete/zsh/tunl "${pkgdir}/usr/share/zsh/site-functions/_tunl"
}