blob: 6a82d39e0d05e92ed96631d58c9871e2919239ad (
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
34
35
36
37
38
|
# Maintainer: Kimiblock Moe
pkgname=snotify
pkgver=1.1.1
pkgrel=1
epoch=1
pkgdesc="Play sounds when receiving a notification."
arch=("any")
url="https://github.com/Kimiblock/snotify"
license=("GPL-2.0-or-later")
depends=("dbus" "glibc" libpulse coreutils)
optdepends=(
"glib2: Do not disturb support for GNOME"
)
makedepends=('go' 'git')
backup=()
source=("git+https://github.com/Kimiblock/snotify.git#tag=${pkgver}")
sha256sums=('abbb27aa32c4f2bc07584adb234057b51ff8c3f560d9160fa1476ab68bc1a342')
function prepare() {
cd "${srcdir}/snotify"
}
function build() {
cd "${srcdir}/snotify"
go build -trimpath -buildmode=pie -mod=readonly -modcacherw -ldflags "-linkmode external -extldflags \"${LDFLAGS}\""
}
function check() {
cd "${srcdir}/snotify"
go test ./...
}
function package() {
install -Dm755 "${srcdir}/snotify/snotify" "${pkgdir}/usr/bin/snotify"
install -Dm644 "${srcdir}/snotify/snotify.service" "${pkgdir}/usr/lib/systemd/user/snotify.service"
install -Dm644 "${srcdir}/snotify/message.ogg" "${pkgdir}/opt/snotify/message.ogg"
}
|