blob: 2a4475e0bc57a48395ad4f70cad6bbc4b28b257d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
# Maintainer: Gaetan Bisson <bisson@archlinux.org>
pkgname=qgo-git
_pkgname=qgo
pkgver=20160623.1e65b0c
pkgrel=1
pkgdesc='Go Client based on Qt 5'
url='https://github.com/pzorin/qgo'
arch=('i686' 'x86_64' 'armv7h')
license=('GPL')
depends=('qt5-multimedia' 'qt5-tools')
makedepends=('git')
source=("git://github.com/pzorin/qgo.git")
sha256sums=('SKIP')
provides=("${_pkgname}")
conflicts=("${_pkgname}")
pkgver() {
cd "${srcdir}/${_pkgname}"
git log -1 --format='%cd.%h' --date=short | tr -d -
}
build() {
cd "${srcdir}/${_pkgname}"
qmake-qt5
make
}
package() {
cd "${srcdir}/${_pkgname}"
make INSTALL_ROOT="${pkgdir}" install
}
|