blob: 081558536804797178075416a334974dc80c5fe9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
# Maintainer: Ariel Abreu <facekapow@outlook.com>
pkgname='gitify-bin'
pkgver='4.5.1'
pkgrel=1
pkgdesc='GitHub notifications on your menu bar'
arch=('x86_64')
url='https://www.gitify.io/'
license=('MIT')
depends=('gtk3' 'libnotify' 'nss' 'libxss' 'libxtst' 'xdg-utils' 'at-spi2-core' 'libutil-linux' 'libappindicator-gtk3' 'libsecret')
source=(
"$pkgname-$pkgver.deb::https://github.com/manosim/gitify/releases/download/v$pkgver/gitify_${pkgver}_amd64.deb"
"LICENSE::https://raw.githubusercontent.com/manosim/gitify/v$pkgver/LICENSE"
)
sha256sums=(
'0b64a6bb7dade21aed4faf169c4bb8feff594ac100e7d432de6faf5d00b8f78a'
'SKIP'
)
noextract=("$pkgname-$pkgver.deb")
options=('!strip')
package() {
cd "$pkgdir"
ar p "$srcdir/$pkgname-$pkgver.deb" data.tar.xz | tar xJ
install -d -m755 "${pkgdir}/usr/bin"
ln -s /opt/Gitify/gitify "${pkgdir}/usr/bin"
install -d -m755 "${pkgdir}/usr/share/licenses/gitify-bin"
install -m644 "$srcdir/LICENSE" "${pkgdir}/usr/share/licenses/gitify-bin/LICENSE"
}
|