wok-next view liburcu/receipt @ rev 21020

Cleaning is almost finished... I should proceed to upgrades.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Fri Nov 02 14:15:08 2018 +0200 (2018-11-02)
parents 8b5b2a6d07b8
children e19ff076dc63
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="$PACKAGE-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 }