This commit is contained in:
Jack L. Frost 2015-06-08 12:29:41 +03:00
commit dff65eee2a
2 changed files with 52 additions and 0 deletions

15
.SRCINFO Normal file
View File

@ -0,0 +1,15 @@
pkgbase = fskit-git
pkgdesc = Filesystem utility library and SDK
pkgver = r197.e626604
pkgrel = 1
url = https://github.com/jcnelson/fskit.git
arch = x86_64
arch = i686
license = ISC
depends = fuse
provides = fskit
source = fskit-git::git+https://github.com/jcnelson/fskit.git
sha1sums = SKIP
pkgname = fskit-git

37
PKGBUILD Normal file
View File

@ -0,0 +1,37 @@
# Maintainer: Jack L. Frost <fbt@fleshless.org>
pkgname=fskit-git
pkgver=r197.e626604
pkgrel=1
pkgdesc='Filesystem utility library and SDK'
url='https://github.com/jcnelson/fskit.git'
arch=( 'x86_64' 'i686' )
license=( 'ISC' )
depends=( 'fuse' )
provides=( 'fskit' )
source=( "${pkgname}::git+https://github.com/jcnelson/fskit.git" )
sha1sums=( 'SKIP' )
pkgver() {
cd "${pkgname}"
if git_version=$( git describe --long --tags 2>/dev/null ); then
IFS='-' read last_tag tag_rev commit <<< "$git_version"
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
}
build() {
cd "${pkgname}"
make CXX='g++ -fPIC'
}
package() {
cd "${pkgname}"
make DESTDIR="${pkgdir}" install
}
# vim: noet