From 3ccf7959ec0b47be13ed2b7c1cbddfdea57b975e Mon Sep 17 00:00:00 2001 From: Tim Kleinschmidt Date: Wed, 21 Oct 2015 22:48:51 +0200 Subject: [PATCH] Initial commit --- .SRCINFO | 21 +++++++++++++++++++++ .gitignore | 3 +++ PKGBUILD | 29 +++++++++++++++++++++++++++++ 3 files changed, 53 insertions(+) create mode 100644 .SRCINFO create mode 100644 .gitignore create mode 100644 PKGBUILD diff --git a/.SRCINFO b/.SRCINFO new file mode 100644 index 000000000000..8f447f7b0b03 --- /dev/null +++ b/.SRCINFO @@ -0,0 +1,21 @@ +pkgbase = gitkraken + pkgdesc = The intuitive, fast, and beautiful cross-platform Git client. + pkgver = 0.30.8 + pkgrel = 1 + url = http://www.gitkraken.com/ + arch = x86_64 + license = custom + depends = gtk2 + depends = nss + depends = libnotify + depends = libxtst + depends = libgnome-keyring + depends = gconf + depends = gcc-libs-multilib + depends = alsa-lib + provides = gitkraken + source = https://release.gitkraken.com/linux/gitkraken-amd64.tar.gz + md5sums = 6c15078d83302c74fb121ca2274730bf + +pkgname = gitkraken + diff --git a/.gitignore b/.gitignore new file mode 100644 index 000000000000..3f99208c285e --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +pkg/ +src/ +gitkraken*.tar* diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 000000000000..b26f3d72882c --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,29 @@ +# Maintainer: Tim Kleinschmidt + +pkgname=gitkraken +pkgrel=1 +pkgver=0.30.8 +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' 'gcc-libs-multilib' 'alsa-lib') +makedepends=() +backup=() +install='' +source=("https://release.gitkraken.com/linux/gitkraken-amd64.tar.gz") +md5sums=('6c15078d83302c74fb121ca2274730bf') + +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 -Dm644 "$srcdir"/GitKraken/LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE +}