Bump version to v0.3.0

patch-6ee5522513d8ef3f2bb53d8fc09b93876f919a8a
Konstantinos Sideris 2018-04-12 23:44:36 +03:00
parent 9628c9f420
commit 73d4b0877b
2 changed files with 9 additions and 4 deletions

View File

@ -1,6 +1,6 @@
pkgbase = nheko-git
pkgdesc = Desktop client for the Matrix protocol
pkgver = 0.2.1.r520.d703377a
pkgver = 0.3.0.r520.d703377a
pkgrel = 1
url = https://github.com/mujx/nheko
arch = i686
@ -14,6 +14,8 @@ pkgbase = nheko-git
depends = qt5-base
depends = lmdb
depends = qt5-multimedia
provides = nheko
conflicts = nheko
source = nheko-git::git://github.com/mujx/nheko.git
md5sums = SKIP

View File

@ -1,7 +1,7 @@
# Maintainer: Konstantinos Sideris <siderisk at auth dot gr>
pkgname=nheko-git
pkgver=0.2.1.r520.d703377a
pkgver=0.3.0.r571.e032f293
pkgrel=1
pkgdesc="Desktop client for the Matrix protocol"
arch=("i686" "x86_64")
@ -12,6 +12,9 @@ license=("GPL3")
depends=("qt5-base" "lmdb" "qt5-multimedia")
makedepends=("git" "cmake" "gcc" "fontconfig" "qt5-tools")
provides=("nheko")
conflicts=("nheko")
source=($pkgname::git://github.com/mujx/nheko.git)
md5sums=("SKIP")
@ -21,12 +24,12 @@ prepare() {
pkgver() {
cd "$pkgname"
printf "0.2.1.r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
printf "0.3.0.r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}
build() {
cd "$pkgname"
cmake -H. -Bbuild -DCMAKE_BUILD_TYPE=RelWithDebInfo
cmake -H. -Bbuild -DCMAKE_BUILD_TYPE=Release
cmake --build build
}