Bump version to v0.3.0
parent
9628c9f420
commit
73d4b0877b
4
.SRCINFO
4
.SRCINFO
|
@ -1,6 +1,6 @@
|
||||||
pkgbase = nheko-git
|
pkgbase = nheko-git
|
||||||
pkgdesc = Desktop client for the Matrix protocol
|
pkgdesc = Desktop client for the Matrix protocol
|
||||||
pkgver = 0.2.1.r520.d703377a
|
pkgver = 0.3.0.r520.d703377a
|
||||||
pkgrel = 1
|
pkgrel = 1
|
||||||
url = https://github.com/mujx/nheko
|
url = https://github.com/mujx/nheko
|
||||||
arch = i686
|
arch = i686
|
||||||
|
@ -14,6 +14,8 @@ pkgbase = nheko-git
|
||||||
depends = qt5-base
|
depends = qt5-base
|
||||||
depends = lmdb
|
depends = lmdb
|
||||||
depends = qt5-multimedia
|
depends = qt5-multimedia
|
||||||
|
provides = nheko
|
||||||
|
conflicts = nheko
|
||||||
source = nheko-git::git://github.com/mujx/nheko.git
|
source = nheko-git::git://github.com/mujx/nheko.git
|
||||||
md5sums = SKIP
|
md5sums = SKIP
|
||||||
|
|
||||||
|
|
9
PKGBUILD
9
PKGBUILD
|
@ -1,7 +1,7 @@
|
||||||
# Maintainer: Konstantinos Sideris <siderisk at auth dot gr>
|
# Maintainer: Konstantinos Sideris <siderisk at auth dot gr>
|
||||||
|
|
||||||
pkgname=nheko-git
|
pkgname=nheko-git
|
||||||
pkgver=0.2.1.r520.d703377a
|
pkgver=0.3.0.r571.e032f293
|
||||||
pkgrel=1
|
pkgrel=1
|
||||||
pkgdesc="Desktop client for the Matrix protocol"
|
pkgdesc="Desktop client for the Matrix protocol"
|
||||||
arch=("i686" "x86_64")
|
arch=("i686" "x86_64")
|
||||||
|
@ -12,6 +12,9 @@ license=("GPL3")
|
||||||
depends=("qt5-base" "lmdb" "qt5-multimedia")
|
depends=("qt5-base" "lmdb" "qt5-multimedia")
|
||||||
makedepends=("git" "cmake" "gcc" "fontconfig" "qt5-tools")
|
makedepends=("git" "cmake" "gcc" "fontconfig" "qt5-tools")
|
||||||
|
|
||||||
|
provides=("nheko")
|
||||||
|
conflicts=("nheko")
|
||||||
|
|
||||||
source=($pkgname::git://github.com/mujx/nheko.git)
|
source=($pkgname::git://github.com/mujx/nheko.git)
|
||||||
md5sums=("SKIP")
|
md5sums=("SKIP")
|
||||||
|
|
||||||
|
@ -21,12 +24,12 @@ prepare() {
|
||||||
|
|
||||||
pkgver() {
|
pkgver() {
|
||||||
cd "$pkgname"
|
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() {
|
build() {
|
||||||
cd "$pkgname"
|
cd "$pkgname"
|
||||||
cmake -H. -Bbuild -DCMAKE_BUILD_TYPE=RelWithDebInfo
|
cmake -H. -Bbuild -DCMAKE_BUILD_TYPE=Release
|
||||||
cmake --build build
|
cmake --build build
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue