Signed-off-by: fbt <fbt@fleshless.org>
This commit is contained in:
Jack L. Frost 2017-12-14 07:32:52 +03:00
commit 4e64972b2f
1 changed files with 30 additions and 0 deletions

30
PKGBUILD Normal file
View File

@ -0,0 +1,30 @@
# Maintainer: Jack L. Frost <fbt@fleshless.org>
pkgname=ssm-git
pkgver=0.3.5.r5.gcb6b3d6
pkgrel=1
pkgdesc='A simple service manager for Spark Linux'
url='https://git.fleshless.org/ssm/about'
arch=( 'any' )
license=( 'ISC' )
depends=( 'bash' )
optdepends=( 'ssm-services-git: example scripts that mostly work out of the box on arch' )
source=( "${pkgname}::git+https://git.fleshless.org/u/spark/ssm" )
sha1sums=('SKIP')
pkgver() {
cd "${srcdir}/${pkgname}"
if IFS='-' read last_tag tag_rev commit < <( git describe --long --tags 2>/dev/null ); then
printf '%s.r%s.%s' "$last_tag" "$tag_rev" "$commit"
else
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
fi
}
package() {
cd "$pkgname"
install -Dm755 ssm "$pkgdir/usr/bin/ssm"
install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
}