summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 7629ebff0314b45a2bc10c43c5afd483b46c000f (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
# Maintainer: Doron Behar <doron.behar@gmail.com>

pkgname=concurrencykit
_pkgname=ck
pkgver=0.7.0
pkgrel=1
pkgdesc="Concurrency primitives, safe memory reclamation mechanisms and non-blocking data structures for the research, design and implementation of high performance concurrent systems"
arch=('i686' 'x86_64')
url="http://www.concurrencykit.org/"
license=('BSD')
source=("https://github.com/concurrencykit/ck/archive/${pkgver}.tar.gz")
md5sums=('d9340726b17ce5c5b5e0673891c46308')

build() {
  cd ${srcdir}/${_pkgname}-${pkgver}
  ./configure \
    --prefix=/usr \
    --sysconfdir=/etc
  make
}

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