summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorAner Andros2017-04-01 12:32:26 +0100
committerAner Andros2017-04-01 12:32:26 +0100
commitc61fc79be49b0bf5f5e9fdc1bc2818c8d8d639ea (patch)
tree5e1b750a60365eebb6e11974331910470b63569d
parent9fc99931de5cb69500c6f640c35a3aac4481e05b (diff)
downloadaur-c61fc79be49b0bf5f5e9fdc1bc2818c8d8d639ea.tar.gz
fixed the PKGBUILD + newest version
-rw-r--r--.SRCINFO6
-rw-r--r--PKGBUILD11
2 files changed, 8 insertions, 9 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 18c24757dcd5..869dedbdcf9c 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,14 +1,10 @@
pkgbase = git-it
pkgdesc = Git-it is a desktop app that teaches you how to use Git and GitHub on the command line.
pkgver = 4.3.3
- pkgrel = 4
+ pkgrel = 5
url = https://github.com/jlord/git-it-electron
arch = x86_64
license = BSD
- depends = electron
- depends = git
- depends = atom
- depends = unzip
provides = git-it
source = https://github.com/jlord/git-it-electron/releases/download/4.3.3/Git-it-Linux-x64.zip
source = git-it.desktop
diff --git a/PKGBUILD b/PKGBUILD
index e12178cc5736..628910c1f37c 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,22 +2,25 @@
pkgbase=git-it
pkgname=git-it
-pkgrel=4
+pkgrel=5
pkgver=4.3.3
pkgdesc="Git-it is a desktop app that teaches you how to use Git and GitHub on the command line."
url="https://github.com/jlord/git-it-electron"
provides=('git-it')
arch=('x86_64')
license=('BSD')
-depends=('electron' 'git' 'atom' 'unzip')
+#depends=('electron' 'git' 'atom')
+depends=()
makedepends=()
backup=()
install=''
+
source=(
"https://github.com/jlord/git-it-electron/releases/download/${pkgver}/Git-it-Linux-x64.zip"
"${pkgname}.desktop"
"${pkgname}.png"
)
+
md5sums=('aa5ebe86a547afa9bcc7ae8c25b02109'
'cc6162296991cdb4463081962c0018f1'
'3fc4074dd6efa11246481d57dae86cf1')
@@ -25,10 +28,10 @@ md5sums=('aa5ebe86a547afa9bcc7ae8c25b02109'
package() {
install -d "$pkgdir"/opt
- cp -R "$srcdir"/Git-it-Linux-x64/Git-it "$pkgdir"/opt/Git-it
+ cp -R "$srcdir"/Git-it-Linux-x64 "$pkgdir"/opt/git-it
install -d "$pkgdir"/usr/bin
- ln -sf ../../opt/Git-it-Linux-x64/Git-it "$pkgdir"/usr/bin/git-it
+ ln -sf ../../opt/git-it/Git-it "$pkgdir"/usr/bin/git-it
install -D -m644 "./${pkgname}.desktop" "${pkgdir}/usr/share/applications/${pkgname}.desktop"
install -D -m644 "./${pkgname}.png" "${pkgdir}/usr/share/pixmaps/${pkgname}.png"