mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 02:22:13 +08:00
26 lines
650 B
Bash
26 lines
650 B
Bash
# Contributor: Sergej Pupykin <arch+pub@sergej.pp.ru>
|
|
# Contributor: Christian Babeux <christian.babeux@0x80.ca>
|
|
# Contributor: Yggdrasil <tetzank at web dot de>
|
|
|
|
pkgname=liburcu
|
|
pkgver=0.8.9
|
|
pkgrel=1
|
|
pkgdesc="LGPLv2.1 userspace RCU (read-copy-update) library"
|
|
arch=('x86_64')
|
|
url="http://lttng.org/urcu"
|
|
license=('LGPL2.1')
|
|
source=(http://lttng.org/files/urcu/userspace-rcu-${pkgver}.tar.bz2)
|
|
depends=('glibc')
|
|
sha1sums=('cec02a23b6b28a86ea47a479060cb6f016fc84fb')
|
|
|
|
build() {
|
|
cd ${srcdir}/userspace-rcu-${pkgver}
|
|
./configure --prefix=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd ${srcdir}/userspace-rcu-${pkgver}
|
|
make install DESTDIR=${pkgdir}
|
|
}
|