Remove PKGBUILD from this repo

This commit is contained in:
Anthony Wang 2022-05-20 11:03:38 -05:00
parent 3f22c99f77
commit aca7407c1b
Signed by: a
GPG key ID: BC96B00AEC5F2D76
2 changed files with 0 additions and 50 deletions

View file

@ -1,20 +0,0 @@
pkgbase = porkbun-dynamic-dns-python-git
pkgdesc = Our minimalist dynamic DNS client written in Python
pkgver = r14.e02d543
pkgrel = 1
url = https://github.com/Ta180m/porkbun-dynamic-dns-python
arch = any
license = MIT
depends = python
depends = python-requests
backup = etc/porkbun-ddns.json
source = porkbun-ddns.py
source = config.json.example
source = systemd.service
source = systemd.timer
sha256sums = SKIP
sha256sums = SKIP
sha256sums = SKIP
sha256sums = SKIP
pkgname = porkbun-dynamic-dns-python-git

View file

@ -1,30 +0,0 @@
# Maintainer: Anthony Wang <ta180m@pm.me>
_pkgname=porkbun-dynamic-dns-python
pkgname=${_pkgname}-git
pkgver=r14.e02d543
pkgrel=1
pkgdesc="Our minimalist dynamic DNS client written in Python"
arch=(any)
url="https://github.com/Ta180m/porkbun-dynamic-dns-python"
license=('MIT')
depends=('python' 'python-requests')
backup=('etc/porkbun-ddns.json')
source=("porkbun-ddns.py"
"config.json.example"
"systemd.service"
"systemd.timer")
sha256sums=(SKIP
SKIP
SKIP
SKIP)
pkgver() {
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}
package() {
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"
}