summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorsvalo <me@valo.space>2020-02-12 13:07:37 +0100
committersvalo <me@valo.space>2020-02-12 13:07:37 +0100
commit0565e2408097b89e0c688692708e8c0e784e83c2 (patch)
tree72f3948085c48a093e578ae5109eddc65f6e6373
parente51fb6525b85627ca6cbe4d8b46ac27be2507e10 (diff)
downloaddino-git-0565e2408097b89e0c688692708e8c0e784e83c2.tar.gz
dino-git-0565e2408097b89e0c688692708e8c0e784e83c2.tar.bz2
dino-git-0565e2408097b89e0c688692708e8c0e784e83c2.zip
Various PKGBUILD updates
Changes pkgver function as there is a tagged release Updates the url filed pointing to website
-rw-r--r--.SRCINFO4
-rw-r--r--PKGBUILD6
2 files changed, 5 insertions, 5 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 77b1c63..8e982dc 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,8 +1,8 @@
pkgbase = dino-git
pkgdesc = Simple and modern Jabber/XMPP client written in vala
- pkgver = r640.3b0a27e
+ pkgver = v0.1.0.r1.ge17c797
pkgrel = 1
- url = https://github.com/dino/dino
+ url = https://dino.im/
arch = i686
arch = x86_64
arch = aarch64
diff --git a/PKGBUILD b/PKGBUILD
index d229761..c2a22f1 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,11 +2,11 @@
# Contributor: svalo <me@valo.space>
pkgname=dino-git
-pkgver=r640.3b0a27e
+pkgver=v0.1.0.r1.ge17c797
pkgrel=1
pkgdesc="Simple and modern Jabber/XMPP client written in vala"
arch=('i686' 'x86_64' 'aarch64')
-url="https://github.com/dino/dino"
+url="https://dino.im/"
license=('GPL3')
depends=('glib2>=2.38' 'glib-networking' 'gtk3>=3.22' 'gpgme' 'libgee>=0.10' 'libgcrypt' 'libsoup' 'sqlite' 'qrencode' 'libsignal-protocol-c' )
makedepends=('git' 'cmake' 'vala>=0.34' 'ninja')
@@ -30,7 +30,7 @@ sha512sums=('SKIP')
pkgver() {
cd "${srcdir}/${pkgname%-git}"
- printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
+ git describe --long --tags | sed 's/\([^-]*-g\)/r\1/;s/-/./g'
}
build() {