wok-next view liburcu/receipt @ rev 20969

Micro-updates + { new clang + assaultcube (still broken)} + {new python modules from SliTaz Cooking + their depends}
author Aleksej Bobylev <al.bobylev@gmail.com>
date Fri Sep 14 01:56:52 2018 +0300 (2018-09-14)
parents 5841522533ec
children d5aab818505e
line source
1 # SliTaz package receipt v2.
3 PACKAGE="liburcu"
4 VERSION="0.10.1"
5 CATEGORY="system-tools"
6 SHORT_DESC="Userspace RCU (read-copy-update) library"
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="LGPL2.1"
9 WEB_SITE="http://liburcu.org/"
11 TARBALL="userspace-rcu-$VERSION.tar.bz2"
12 WGET_URL="http://www.lttng.org/files/urcu/$TARBALL"
14 SPLIT="liburcu-dev"
16 compile_rules() {
17 ./configure \
18 --disable-static \
19 $CONFIGURE_ARGS &&
20 fix libtool &&
21 make &&
22 make install
23 }
25 genpkg_rules() {
26 case $PACKAGE in
27 liburcu)
28 copy @std
29 ;;
30 *-dev)
31 copy @dev
32 rm -r $fs/usr/share/ # Makefiles in doc/
33 ;;
34 esac
35 }