summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 87f7ecd5eb70b68ee59b5a471b7b719c12c80653 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#Maintainer: Ian Beringer <ian@ianberinger.com>

pkgname=libqb-git
_pkgname=libqb
pkgver=1.0.19.g70340f7
pkgrel=1
pkgdesc='Library with the primary purpose of providing high performance client server reusable features'
arch=("i686" "x86_64")
makedepends=("git" "doxygen" "splint")
license=('LGPL2.1')
url=https://github.com/ClusterLabs/$pkgname/wiki
source=("${_pkgname}::git+https://github.com/ClusterLabs/libqb.git")
sha256sums=('SKIP')
provides=('libqb')
conflicts=('libqb')

pkgver() {
	cd "${srcdir}/${_pkgname}"
  git describe --tags | sed -e 's:v::' -e 's/-/./g'
}

build() {
  cd "${srcdir}/${_pkgname}"
  ./autogen.sh
  ./configure --prefix=/usr --sbindir=/usr/bin --libdir=/usr/lib
  make
}

package() {
  cd "${srcdir}/${_pkgname}"
  make DESTDIR="$pkgdir/" install
}