first commit

This commit is contained in:
2026-03-09 21:41:21 +01:00
commit eacc32a310
6 changed files with 112 additions and 0 deletions

20
PKGBUILD Normal file
View File

@@ -0,0 +1,20 @@
# Maintainer: Bryan Joshua Pedini <bryan [at] pedini [dot] dev>
pkgname="tsparams"
pkgver="1.0.0"
pkgrel="1"
pkgdesc="A simple tool to extract and display Tailscale parameters"
url="https://git.bjphoster.com/source/${pkgname}"
arch=("any")
license=("GPL3")
depends=("python" "tailscale")
source=("https://git.bjphoster.com/source/${pkgname}/archive/${pkgver}.tar.gz")
sha1sums=("316becbc9b10d004cfc89e3eeb3e2f3498b70035")
sha256sums=("2cbf10ffca2f0adf21daff04bfb1cde401b2f9e713863a23b01aa6bddf1ff62d")
md5sums=("b215f07928ceb4399b51ab8107d275cc")
package() {
install -Dm644 "${srcdir}/${pkgname}/LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
install -Dm755 "${srcdir}/${pkgname}/tsparams.py" "${pkgdir}/usr/bin/${pkgname}"
}