summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorIan MacKay2018-08-31 09:10:48 -0700
committerIan MacKay2018-08-31 09:10:48 -0700
commit18ae79c05bfafd7ab20fac7b50a003f80844cd75 (patch)
treeeddb9bf353bed71b652a43aeea6b91b872f783f7
parent9d1ca86b4c31d77577eefb327bbea121e1e2303e (diff)
downloadaur-18ae79c05bfafd7ab20fac7b50a003f80844cd75.tar.gz
libcurl is driving me nuts
-rw-r--r--.SRCINFO2
-rw-r--r--PKGBUILD4
2 files changed, 3 insertions, 3 deletions
diff --git a/.SRCINFO b/.SRCINFO
index e143d36175d5..8df3d86e2404 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -11,7 +11,7 @@ pkgbase = github-desktop-git
makedepends = python2
depends = gnome-keyring
depends = git
- depends = libcurl-openssl-1.0
+ depends = libcurl-gnutls
optdepends = hub: CLI interface for GitHub.
provides = github-desktop
conflicts = github-desktop
diff --git a/PKGBUILD b/PKGBUILD
index cb04196893a8..e3adfdc3f5fa 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -11,7 +11,7 @@ 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')
provides=(${_pkgname})
@@ -43,5 +43,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}"
}