summarylogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.SRCINFO10
-rw-r--r--PKGBUILD12
2 files changed, 11 insertions, 11 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 3abf4b9d1e63..49214a86f1db 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,19 +1,19 @@
pkgbase = github-desktop-bin
pkgdesc = GUI for managing Git and GitHub.
- pkgver = 1.3.4
- pkgrel = 3
+ pkgver = 1.4.0_linux2
+ pkgrel = 1
url = https://desktop.github.com
arch = x86_64
license = MIT
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
- source = https://github.com/shiftkey/desktop/releases/download/release-1.3.4/GitHubDesktop-linux-amd64-1.3.4.deb
+ source = https://github.com/shiftkey/desktop/releases/download/release-1.4.0-linux2/GitHubDesktop-linux-amd64-1.4.0-linux2.deb
source = github-desktop.desktop
- sha256sums = 47c1929b3d2c4c73aa5e8db9881a4d7ff03d4fbdf3f511481633275cbe0ad51c
+ sha256sums = SKIP
sha256sums = 8545ffdcd8685a2d642a733f9dc407b9b269e2c8fd54f30e1eb336c2aff89318
pkgname = github-desktop-bin
diff --git a/PKGBUILD b/PKGBUILD
index 21fe8911f4bb..9923c08aefa2 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,23 +2,23 @@
_pkgname='github-desktop'
pkgname="${_pkgname}-bin"
-pkgver=1.3.4
+pkgver=1.4.0_linux2
gitname="release-${pkgver//_/-}"
-pkgrel=3
+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.')
provides=(${_pkgname})
conflicts=(${_pkgname})
source=(
- https://github.com/shiftkey/desktop/releases/download/${gitname}/GitHubDesktop-linux-amd64-${pkgver}.deb
+ https://github.com/shiftkey/desktop/releases/download/${gitname}/GitHubDesktop-linux-amd64-${pkgver//_/-}.deb
${_pkgname}.desktop
)
sha256sums=(
- 47c1929b3d2c4c73aa5e8db9881a4d7ff03d4fbdf3f511481633275cbe0ad51c
+ 'SKIP'
8545ffdcd8685a2d642a733f9dc407b9b269e2c8fd54f30e1eb336c2aff89318
)
package() {
@@ -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\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}"
}