summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 3aef8a27219739024030033dc8c8532a38766431 (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
33
# Maintainer: Christian Schendel <doppelhelix@gmail.com>
# shellcheck disable=2034,2154,2164
pkgname=signal-monochrome-tray
pkgver=0.3.4
pkgrel=1
pkgdesc="changes the tray icon of Signal to monochrome"
url="https://github.com/doppelhelix/signal-monochrome-tray-hook"
arch=(any)
license=(
    GPL-3.0-or-later
)
makedepends=(
    git
)
depends=(
    asar
    librsvg
    papirus-icon-theme
    signal-desktop
)
source=("$pkgname-$pkgver::git+$url.git#tag=v${pkgver}?signed")
sha256sums=('1832102951dedbc65321b145e45dc078829e2e97239628e93d63297bdd508b9b')
validpgpkeys=(
    '47D15FC0F6AD8433CD06B4DF5874D2437CD5BBB3' # Christian Schendel <doppelhelix@gmail.com>
)
package() {
    cd "$pkgname-$pkgver"
    install -Dm0755 -t "$pkgdir/usr/share/libalpm/scripts/" signal-tray
    install -Dm0644 -t "$pkgdir/usr/share/libalpm/hooks/" signal-tray.hook
    install -Dm0644 -t "$pkgdir/usr/share/doc/$pkgname/" README.md
}

# vim: set ts=4 sw=4 et: