This repository has been archived on 2020-05-14. You can view files and clone it, but cannot push or open issues or pull requests.
fskit-git/PKGBUILD

39 lines
884 B
Bash
Raw Normal View History

2015-06-08 09:29:41 +00:00
# Maintainer: Jack L. Frost <fbt@fleshless.org>
pkgname=fskit-git
2015-06-08 09:37:42 +00:00
pkgver=r209.bddabd0
2015-06-08 09:37:56 +00:00
pkgrel=2
2015-06-08 09:29:41 +00:00
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}"
2015-06-08 09:37:42 +00:00
make INCLUDEDIR="${pkgdir}/usr/include" \
LIBDIR="${pkgdir}/usr/lib" \
PKGCONFIGDIR="${pkgdir}/usr/lib/pkgconfig" \
install
2015-06-08 09:29:41 +00:00
}