packages/PKGBUILD
2022-06-22 12:48:05 -05:00

27 lines
862 B
Bash

# Maintainer: Anthony Wang <ta180m@proton.me>
_pkgname=porkbun-dynamic-dns-python
pkgname=${_pkgname}-git
pkgver=r16.aca7407
pkgrel=1
pkgdesc="Our minimalist dynamic DNS client written in Python"
arch=(any)
url="https://git.exozy.me/Ta180m/porkbun-dynamic-dns-python"
license=('MIT')
depends=('python' 'python-requests')
backup=('etc/porkbun-ddns.json')
source=("${_pkgname}::git+${url}.git")
sha256sums=(SKIP)
pkgver() {
cd "$_pkgname"
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}
package() {
cd "$_pkgname"
install -vDm755 porkbun-ddns.py "$pkgdir/usr/bin/porkbun-ddns"
install -vDm600 config.json.example "$pkgdir/etc/porkbun-ddns.json"
install -vDm644 systemd.service "$pkgdir/usr/lib/systemd/system/porkbun-ddns.service"
install -vDm644 systemd.timer "$pkgdir/usr/lib/systemd/system/porkbun-ddns.timer"
}