init
This commit is contained in:
commit
dff65eee2a
15
.SRCINFO
Normal file
15
.SRCINFO
Normal 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
37
PKGBUILD
Normal 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
|
Reference in New Issue
Block a user