27 lines
645 B
Plaintext
27 lines
645 B
Plaintext
#/usr/bin/env bash
|
|
|
|
pkgname="static-deployer"
|
|
arch="amd64"
|
|
pkgver=0.0.6.g7067e8f
|
|
pkgrel=1
|
|
pkgdesc="A simple daemon to deploy static site"
|
|
url="https://git.leafee98.com/leafee98/static_deployer"
|
|
maintainer="Leafee98 <me@leafee98.com>"
|
|
|
|
source=(
|
|
"static_deployer::git+https://git.leafee98.com/leafee98/static_deployer.git"
|
|
)
|
|
|
|
function pkgver {
|
|
git -C src/static_deployer describe --tags --long | sed -e 's/^v//; s/-/./g'
|
|
}
|
|
|
|
function pkgver {
|
|
git -C "${srcdir}/static_deployer" describe --tags --long | sed 's/^v//;s/-/./g'
|
|
}
|
|
|
|
function package {
|
|
install -D "${srcdir}/static_deployer/main.py" "${pkgdir}/usr/bin/static-deployer"
|
|
}
|
|
|