nummi/pkgbuild/PKGBUILD

47 lines
1.9 KiB
Bash
Raw Normal View History

2022-05-21 18:25:08 +02:00
pkgname=nummi-git
2023-04-19 17:09:00 +02:00
pkgver=r298.2c95379
2022-05-21 18:25:08 +02:00
pkgrel=1
2022-05-21 12:12:34 +02:00
pkgdesc="Web-based accounting interface"
arch=("any")
url="https://git.edgarpierre.fr/edpibu/nummi"
2022-05-21 18:25:08 +02:00
license=('AGPL3')
2022-05-21 12:12:34 +02:00
depends=(
2022-05-21 12:13:52 +02:00
"gunicorn"
"python-django"
"python-toml"
2022-12-29 18:21:01 +01:00
"python-psycopg2"
2022-05-21 12:12:34 +02:00
)
2022-12-20 17:00:42 +01:00
makedepends=("git")
2022-05-21 12:12:34 +02:00
optdepends=("postgresql: database")
backup=("etc/${pkgname%-git}/config.toml")
2022-05-21 12:12:34 +02:00
source=(
"${pkgname}::git+https://git.edgarpierre.fr/edpibu/nummi"
2022-05-21 18:29:30 +02:00
"${pkgname%-git}.service"
"${pkgname%-git}.tmpfiles"
"${pkgname%-git}.sysusers"
"${pkgname%-git}.nginx"
"config.toml"
2022-05-21 12:12:34 +02:00
)
2022-05-21 19:06:16 +02:00
b2sums=('SKIP'
2023-04-19 17:09:00 +02:00
'c1e81c04cb09bf03e6f1f06b1de1a28bf39bf2b1571819071fe95e214847c7712e11ec9988061284fda2a3f565262018ac733603034c4c4aa98a50bc42f6bd95'
'cd42e864d82ca5ea191d2c15cec55afea272a875f19ebc1252e03fb86ef3d62820e2fedd706a8da0b0e3a7aee355e0bb5dcdb7f3bd803497c1320fab540f7d70'
'78bebc6cca3f8b520783565de9122cc57e62eb629d3693dfaa322a77f4be3c55c5cd5a460bd1f6f3028f4dd1b2018ec6166b7f9aaf55ac3be6178bd1a3a00405'
2022-12-21 14:48:55 +01:00
'c878c463ecb58d94b3f9b96d798b098a7718aec6df4b424a60674c0a9daf9abcb4556e527e55f67dbb093e109145b0ca17556f7dce66116ba7b170ead61acc16'
2023-04-19 17:09:00 +02:00
'efe7c0a7da971bbd43675c71bc16bd3d44948cec55fb5c2237196ad52d712f3e958790f171f0fab82e9ea5529a60789685c5936489b4e2ffdb4a0e1b3fcb031c')
2022-05-21 18:25:08 +02:00
pkgver() {
2022-05-21 18:54:18 +02:00
cd "$pkgname"
2022-05-21 18:25:08 +02:00
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}
2022-05-21 12:12:34 +02:00
package() {
2022-05-21 18:29:30 +02:00
install -Dm644 ${pkgname%-git}.service -t "${pkgdir}"/usr/lib/systemd/system/
2022-05-21 18:30:11 +02:00
install -Dm644 ${pkgname%-git}.tmpfiles "${pkgdir}"/usr/lib/tmpfiles.d/${pkgname%-git}.conf
install -Dm644 ${pkgname%-git}.sysusers "${pkgdir}"/usr/lib/sysusers.d/${pkgname%-git}.conf
install -Dm644 ${pkgname%-git}.nginx "${pkgdir}"/etc/nginx/sites-enabled/${pkgname%-git}.conf
2022-12-29 18:19:22 +01:00
install -Dm750 -o nummi -g nummi config.toml -t "${pkgdir}"/etc/${pkgname%-git}/
2022-05-21 15:59:21 +02:00
2022-05-21 18:54:18 +02:00
cd ${pkgname}/${pkgname%-git}
2022-05-21 18:29:30 +02:00
find * -type f -exec install -Dm0644 "{}" "${pkgdir}/usr/share/webapps/${pkgname%-git}/{}" \;
2022-05-21 12:12:34 +02:00
}