blob: f96d8704372da1c64a936aacf4bb2c49bf8f7fbf (
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
34
35
36
37
|
# Maintainer: Duong Do Minh Chau <duongdominhchau@gmail.com>
_gh_api="https://api.github.com"
_repo="francescmm/GitQlient"
pkgname=gitqlient
pkgver=1.6.2
pkgrel=1
pkgdesc="GitQlient: Multi-platform Git client written with Qt"
arch=(x86_64)
url="https://github.com/$_repo"
license=('LGPL')
depends=(git qt5-base)
makedepends=(curl)
source=("$url/releases/download/v${pkgver}/${pkgname}_${pkgver}.tar.gz")
sha256sums=(4d412813a2addba7befc6099c49798ece4e98e16159de98db3994f5fe2330770)
_release_hash() {
curl --silent "${_gh_api}/repos/$_repo/git/ref/tags/v${pkgver}" | jq -r '.object.sha'
}
build() {
cd "${pkgname}_${pkgver}"
# By default `qmake` use current directory name, but the `.pro` file
# name is `GitQlient`, not `GitQlient-$pkgver`, so we need to explicitly
# specify the `.pro` file here
# We also need to fetch the SHA hash and set the version manually as this is
# a release tarball, not a git repo. Without doing this, the build script will
# include the commit hash of the AUR repo in the tooltip of GitQlient About.
qmake PREFIX="/usr" VERSION="$pkgver" GQ_SHA="$(_release_hash)" GitQlient.pro
make
}
package() {
cd "${pkgname}_${pkgver}"
make INSTALL_ROOT="${pkgdir}" install
install -Dm644 LICENSE -t "${pkgdir}/usr/share/licenses/gitqlient"
}
|