summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorIan MacKay2018-08-31 09:27:15 -0700
committerIan MacKay2018-08-31 09:27:15 -0700
commite324770faa1de4a79553c0f4e71fd0c77f66dfac (patch)
treeee105f5215ca9c00a91add1583b9e272d298457b
parent6b6a3f7fae285342a8ce812db9d8d7e444e5870e (diff)
downloadaur-e324770faa1de4a79553c0f4e71fd0c77f66dfac.tar.gz
Dependencies driving me crazy - why does this work now?
-rw-r--r--.SRCINFO4
-rw-r--r--PKGBUILD6
2 files changed, 5 insertions, 5 deletions
diff --git a/.SRCINFO b/.SRCINFO
index b597e665c0ff..a6a494f95337 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = github-desktop
pkgdesc = GUI for managing Git and GitHub.
pkgver = 1.3.5_beta0
- pkgrel = 1
+ pkgrel = 2
url = https://desktop.github.com
arch = x86_64
license = MIT
@@ -11,7 +11,7 @@ pkgbase = github-desktop
makedepends = python2
depends = gnome-keyring
depends = git
- depends = libcurl-openssl-1.0
+ depends = libcurl-gnutls
optdepends = hub: CLI interface for GitHub.
source = git+https://github.com/desktop/desktop.git#tag=release-1.3.5-beta0
source = github-desktop.desktop
diff --git a/PKGBUILD b/PKGBUILD
index 8ed708df89f4..853b3945dff6 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -6,12 +6,12 @@ _pkgname='github-desktop'
pkgname="${_pkgname}"
pkgver=1.3.5_beta0
gitname="release-${pkgver//_/-}"
-pkgrel=1
+pkgrel=2
pkgdesc="GUI for managing Git and GitHub."
arch=('x86_64')
url="https://desktop.github.com"
license=('MIT')
-depends=('gnome-keyring' 'git' 'libcurl-openssl-1.0')
+depends=('gnome-keyring' 'git' 'libcurl-gnutls')
optdepends=('hub: CLI interface for GitHub.')
makedepends=('xorg-server-xvfb' 'nodejs-lts-carbon' 'yarn' 'python2')
DLAGENTS=("http::/usr/bin/git clone --branch ${gitname} --single-branch %u")
@@ -37,5 +37,5 @@ package() {
install -Dm644 "desktop/app/static/logos/1024x1024.png" "${pkgdir}/usr/share/icons/hicolor/1024x1024/apps/${_pkgname}.png"
install -Dm644 "desktop/app/static/logos/512x512.png" "${pkgdir}/usr/share/icons/hicolor/512x512/apps/${_pkgname}.png"
install -Dm644 "desktop/app/static/logos/256x256.png" "${pkgdir}/usr/share/icons/hicolor/256x256/apps/${_pkgname}.png"
- printf "#!/bin/sh\n\nLD_PRELOAD=libcurl.so.4 /opt/${_pkgname}/desktop \"$@\"\n" | install -Dm755 /dev/stdin "${pkgdir}/usr/bin/${_pkgname}"
+ printf "#!/bin/sh\n\n/opt/${_pkgname}/desktop \"$@\"\n" | install -Dm755 /dev/stdin "${pkgdir}/usr/bin/${_pkgname}"
}