summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorJosef Vybíhal2020-06-05 17:00:13 +0200
committerJosef Vybíhal2020-06-05 17:00:13 +0200
commit29bd24124fc86e7a95570104cad043507d143e15 (patch)
treebb2909cf928bcd0baaddc1e1b75a8f207d39112e
parent5e0536b6ac8dbd222f3ad161dba462f31d4edc17 (diff)
downloadaur-29bd24124fc86e7a95570104cad043507d143e15.tar.gz
Version bump, temporarily switched to specific commit that fixes building with GCC 10 (#13) until new release tag is made.
-rw-r--r--.SRCINFO6
-rw-r--r--PKGBUILD13
2 files changed, 11 insertions, 8 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 538628e15b44..aa80af275f06 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,6 +1,6 @@
pkgbase = gstm
pkgdesc = Gnome SSH Tunnel Manager - Gtk3 Edition
- pkgver = 1.3.5.1
+ pkgver = 1.3.6
pkgrel = 1
url = https://github.com/dallenwilson/gstm
arch = i686
@@ -15,8 +15,8 @@ pkgbase = gstm
provides = gstm
conflicts = gstm-git
conflicts = gstm-gtk2
- source = https://github.com/dallenwilson/gstm/releases/download/1.3.5.1/gstm-1.3.5.1.tar.gz
- sha256sums = a4971c710a062b2b3a67ffe73e619fbabb2a0efb6ba5e6c03bf7d938cd69bc53
+ source = git+https://github.com/dallenwilson/gstm.git#commit=75d363138f3ba092e2d6a0464eaab33b2009ee90
+ sha256sums = SKIP
pkgname = gstm
diff --git a/PKGBUILD b/PKGBUILD
index 636800352543..f7e59d6c48d3 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -8,7 +8,7 @@
# Contributor: Daniel J Griffiths <ghost1227@archlinux.us>
pkgname=gstm
-pkgver=1.3.5.1
+pkgver=1.3.6
pkgrel=1
pkgdesc="Gnome SSH Tunnel Manager - Gtk3 Edition"
arch=('i686' 'x86_64')
@@ -18,16 +18,19 @@ depends=('openssh' 'libxml2' 'glib2' 'gdk-pixbuf2' 'gtk3')
makedepends=('intltool')
conflicts=('gstm-git' 'gstm-gtk2')
provides=('gstm')
-source=(https://github.com/dallenwilson/gstm/releases/download/${pkgver}/gstm-${pkgver}.tar.gz)
-sha256sums=('a4971c710a062b2b3a67ffe73e619fbabb2a0efb6ba5e6c03bf7d938cd69bc53')
+#source=(https://github.com/dallenwilson/gstm/releases/download/${pkgver}/gstm-${pkgver}.tar.gz)
+source=('git+https://github.com/dallenwilson/gstm.git#commit=75d363138f3ba092e2d6a0464eaab33b2009ee90')
+sha256sums=('SKIP')
+#sha256sums=('a4971c710a062b2b3a67ffe73e619fbabb2a0efb6ba5e6c03bf7d938cd69bc53')
build() {
- cd ${srcdir}/gstm-${pkgver}
+ cd ${srcdir}/gstm #-${pkgver}
+ ./autogen.sh
./configure --prefix=/usr
make || return 1
}
package() {
- cd ${srcdir}/gstm-${pkgver}
+ cd ${srcdir}/gstm #-${pkgver}
make DESTDIR=${pkgdir} install
}