summarylogtreecommitdiffstats
path: root/PKGBUILD
diff options
context:
space:
mode:
authorIan MacKay2018-08-31 10:15:54 -0700
committerIan MacKay2018-08-31 10:15:54 -0700
commit528b65d5457163e7730f277b2891b91cfc11f320 (patch)
tree1226ea8e7446795aeb7cdaedbc9c085de9504396 /PKGBUILD
parent6c49f979035e06720053a1264fb184756657814e (diff)
downloadaur-528b65d5457163e7730f277b2891b91cfc11f320.tar.gz
libcurl issues driving me crazy - this works now
Diffstat (limited to 'PKGBUILD')
-rw-r--r--PKGBUILD6
1 files changed, 3 insertions, 3 deletions
diff --git a/PKGBUILD b/PKGBUILD
index 0e399cd2e57b..21fe8911f4bb 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -4,12 +4,12 @@ _pkgname='github-desktop'
pkgname="${_pkgname}-bin"
pkgver=1.3.4
gitname="release-${pkgver//_/-}"
-pkgrel=2
+pkgrel=3
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.')
provides=(${_pkgname})
conflicts=(${_pkgname})
@@ -26,5 +26,5 @@ package() {
mv "${pkgdir}/opt/GitHubDesktop" "${pkgdir}/opt/${_pkgname}"
rm "${pkgdir}/usr/share/applications/desktop.desktop"
install -Dm644 "${_pkgname}.desktop" "${pkgdir}/usr/share/applications/${_pkgname}.desktop"
- 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}"
}