blob: 64c8341c2329697f571cbeca9d1dcd986ea0de39 (
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
38
39
40
|
# Maintainer: Tim Kleinschmidt <tim.kleinschmidt@gmail.com>
# Contributor: Marcin Wieczorek <marcin@marcin.co>
pkgname=gitkraken
pkgrel=1
pkgver=1.5.4
pkgdesc="The intuitive, fast, and beautiful cross-platform Git client."
url="http://www.gitkraken.com/"
provides=('gitkraken')
arch=('x86_64')
license=('custom')
depends=('gtk2' 'nss' 'libnotify' 'libxtst' 'libgnome-keyring' 'gconf' 'alsa-lib')
makedepends=()
backup=()
install=''
source=(
"https://release.gitkraken.com/linux/v${pkgver}.tar.gz"
"GitKraken.desktop"
"gitkraken.png"
"eula.html"
)
md5sums=('0830ea99a758e74aefccff689d7e4e32'
'cf2a1746a0cafe11793af0801c78afeb'
'04987b933d551d15c0813111d715bb9e'
'e9ba6663e5f1f92cae31beb0074e8c6c')
package() {
install -d "$pkgdir"/opt
cp -R "$srcdir"/GitKraken "$pkgdir"/opt/gitkraken
find "$pkgdir"/opt/gitkraken/ -type f -exec chmod 644 {} \;
chmod 755 "$pkgdir"/opt/gitkraken/gitkraken
install -d "$pkgdir"/usr/bin
ln -s ../../opt/gitkraken/gitkraken "$pkgdir"/usr/bin/gitkraken
install -D -m644 "./eula.html" "${pkgdir}/usr/share/licenses/${pkgname}/eula.html"
install -D -m644 "./GitKraken.desktop" "${pkgdir}/usr/share/applications/GitKraken.desktop"
install -D -m644 "./gitkraken.png" "${pkgdir}/usr/share/pixmaps/gitkraken.png"
}
|