Add pistache-git

Not tested yet, but package seems to contain correct libs
and header. However, an imported target for CMake is missing.
This commit is contained in:
Martchus 2017-03-18 13:43:27 +01:00
parent ab4ff639fe
commit ea27d2bbce
1 changed files with 37 additions and 0 deletions

37
pistache/git/PKGBUILD Normal file
View File

@ -0,0 +1,37 @@
# Maintainer: Martchus <martchus@gmx.net>
# All my PKGBUILDs are managed at https://github.com/Martchus/PKGBUILDs where
# you also find the URL of a binary repository.
pkgname=pistache-git
_name=${pkgname%-git}
pkgver=176.8604968-1
pkgrel=1
arch=('i686' 'x86_64')
pkgdesc='Modern and elegant HTTP and REST framework for C++'
license=('APACHE')
depends=()
makedepends=('cmake' 'git')
provides=("${_name}")
conflicts=("${_name}")
url="https://github.com/oktal/${_name}"
source=("${_name}::git://github.com/oktal/${_name}.git")
sha256sums=('SKIP')
pkgver() {
cd "${srcdir}/${_name}"
echo "$(git rev-list --count HEAD).$(git rev-parse --short HEAD)"
}
build() {
cd "${srcdir}/${_name}"
cmake \
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_INSTALL_PREFIX="/usr"
make
}
package() {
cd "${srcdir}/${_name}"
make DESTDIR="${pkgdir}" install
}