blob: 93d2c9b846d397de3bdacd149e027b8cbd4e3091 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Maintainer: Bertrand "Kamek" Bousquet <b.kamek@gmail.com>
pkgname=ntfd-bin
pkgver=0.1.0
pkgrel=1
pkgdesc="A lightweight notification daemon for fancy desktop integrations"
depends=('ttf-weather-icons')
arch=('x86_64')
url="https://github.com/kamek-pf/ntfd"
license=("GPL")
provides=("ntfd")
source=("ntfd::${url}/releases/download/${pkgver}/ntfd-${arch}-unknown-linux-musl"
"config.toml::https://raw.githubusercontent.com/kamek-pf/ntfd/${pkgver}/config.toml")
sha256sums=("5eeba828b5cbfb9def926b37cb0bab2595bef1d15f8e118b47ed23620e1f707b"
"fc1406cf489e074f521310258a09fc14e9d54733f9f3fa52c0904e1b871ed7b8")
package() {
install -Dm755 ntfd "${pkgdir}/usr/bin/ntfd"
mkdir -p ~/.config/ntfd
if [ ! -f ~/.config/ntfd/config.toml ]; then
cp config.toml ~/.config/ntfd/config.toml
fi
}
|