-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9367705
commit f101257
Showing
3 changed files
with
9 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
1733902248 | ||
1733916643 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
# Contributor: Ariel Abreu <[email protected]> | ||
pkgname=gitify-bin | ||
_pkgname=Gitify | ||
pkgver=5.16.2 | ||
pkgver=5.17.0 | ||
_electronversion=33 | ||
pkgrel=1 | ||
pkgdesc="GitHub notifications on your menu bar.(Prebuilt version.Use system-wide electron)" | ||
|
@@ -14,22 +14,21 @@ depends=( | |
"electron${_electronversion}" | ||
) | ||
source=( | ||
"${pkgname%-bin}-${pkgver}.deb::${_ghurl}/releases/download/v${pkgver}/${pkgname%-bin}_${pkgver}_amd64.deb" | ||
"${pkgname%-bin}-${pkgver}.rpm::${_ghurl}/releases/download/v${pkgver}/${pkgname%-bin}-${pkgver}.${CARCH}.rpm" | ||
"LICENSE-${pkgver}::https://raw.githubusercontent.com/gitify-app/gitify/v$pkgver/LICENSE" | ||
"${pkgname%-bin}.sh" | ||
) | ||
sha256sums=('cae9c9bcc4edf0691b953a5801fa5350b418fc6b10294c493bfca27d7509da2a' | ||
sha256sums=('ef506c3261b1a313e9ac15682945da1edef3f1214c2c48dadcb3ec1780aeeb3a' | ||
'e3583a920d79b28287ca8bf4b021c6cbeba746a75073c0c68b0aa64ff0b38961' | ||
'291f50480f5a61bc9c68db7d44cd0412071128706baa868a9cb854f8779a1980') | ||
build() { | ||
prepare() { | ||
sed -e " | ||
s/@electronversion@/${_electronversion}/g | ||
s/@appname@/${pkgname%-bin}/g | ||
s/@runname@/app.asar/g | ||
s/@cfgdirname@/${_pkgname}/g | ||
s/@options@/env ELECTRON_OZONE_PLATFORM_HINT=auto/g | ||
" -i "${srcdir}/${pkgname%-bin}.sh" | ||
bsdtar -xf "${srcdir}/data."* | ||
sed -i "s/\/opt\/${_pkgname}\/${pkgname%-bin}/${pkgname%-bin}/g" "${srcdir}/usr/share/applications/${pkgname%-bin}.desktop" | ||
} | ||
package() { | ||
|