debian-packages/static-deployer-git/DEBBUILD
2023-04-13 09:36:41 +08:00

26 lines
632 B
Plaintext

#/usr/bin/env bash
pkgname="static-deployer"
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"
}