summarylogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.SRCINFO6
-rw-r--r--PKGBUILD10
2 files changed, 8 insertions, 8 deletions
diff --git a/.SRCINFO b/.SRCINFO
index e7f4fe5384c1..3d85634617aa 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = github-desktop-git
pkgdesc = GUI for managing Git and GitHub.
- pkgver = 1.3.5.beta0.r66.g2b23831bf
- pkgrel = 2
+ pkgver = 1.4.1.beta0.r18.g2e69e4033
+ pkgrel = 1
url = https://desktop.github.com
arch = x86_64
license = MIT
@@ -11,7 +11,7 @@ pkgbase = github-desktop-git
makedepends = python2
depends = gnome-keyring
depends = git
- depends = libcurl-gnutls
+ depends = libcurl-openssl-1.0
optdepends = hub: CLI interface for GitHub.
provides = github-desktop
conflicts = github-desktop
diff --git a/PKGBUILD b/PKGBUILD
index 3e2cfb849589..6aa38f95725c 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -4,19 +4,19 @@
_pkgname='github-desktop'
pkgname="${_pkgname}-git"
-pkgver=1.3.5.beta0.r66.g2b23831bf
+pkgver=1.4.1.beta0.r18.g2e69e4033
gitname="release-${pkgver//_/-}"
-pkgrel=2
+pkgrel=1
pkgdesc="GUI for managing Git and GitHub."
arch=('x86_64')
url="https://desktop.github.com"
license=('MIT')
-depends=('gnome-keyring' 'git' 'libcurl-gnutls')
+depends=('gnome-keyring' 'git' 'libcurl-openssl-1.0')
optdepends=('hub: CLI interface for GitHub.')
makedepends=('xorg-server-xvfb' 'nodejs-lts-carbon' 'yarn' 'python2')
provides=(${_pkgname})
conflicts=(${_pkgname})
-DLAGENTS=("http::/usr/bin/git clone --branch ${gitname} --single-branch %u")
+DLAGENTS=("https::/usr/bin/git clone --branch ${gitname} --single-branch %u")
source=(
git+https://github.com/desktop/desktop.git
${_pkgname}.desktop
@@ -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\n/opt/${_pkgname}/desktop \"$@\"\n" | install -Dm755 /dev/stdin "${pkgdir}/usr/bin/${_pkgname}"
+ printf "#!/bin/sh\n\nLD_PRELOAD=/usr/lib/libcurl-openssl-1.0.so /opt/${_pkgname}/desktop \"\$@\"\n" | install -Dm755 /dev/stdin "${pkgdir}/usr/bin/${_pkgname}"
}