new : Added headscale

This commit is contained in:
Sayantan Santra 2024-03-15 13:55:08 -05:00
parent 214cffdcee
commit af9f249104
Signed by: SinTan1729
GPG key ID: EB3E68BFBA25C85F

26
headscale/lure.sh Normal file
View file

@ -0,0 +1,26 @@
name='headscale'
version=VERSION
release=1
desc=' An open source, self-hosted implementation of the Tailscale control server'
homepage='https://archlinux.org/packages/extra/x86_64/headscale/'
architectures=('amd64')
maintainer='SinTan1729'
license=('BSD')
provides=('headscale')
conflicts=('headscale')
sources=()
checksums=()
version() {
printf "$(curl ${homepage} | sed -rn 's/<title>.*headscale (.*)-.*<\/title>/\1/p')"
}
package() {
# Pull sources
echo "Pulling ${name} ${version}"
curl -L "${homepage}/download/" -o ${name}.tar.zst
# Build package
echo "Creating the package"
tar xf "${name}.tar.zst" -C ${pkgdir}
}