Initial commit

This commit is contained in:
Tim Kleinschmidt 2015-10-21 22:48:51 +02:00
commit 3ccf7959ec
3 changed files with 53 additions and 0 deletions

21
.SRCINFO Normal file
View file

@ -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

3
.gitignore vendored Normal file
View file

@ -0,0 +1,3 @@
pkg/
src/
gitkraken*.tar*

29
PKGBUILD Normal file
View file

@ -0,0 +1,29 @@
# Maintainer: Tim Kleinschmidt <tim.kleinschmidt@gmail.com>
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
}