wok-next view liburcu/receipt @ rev 21469

updated tinc (1.0.25 -> 1.0.36)
author Hans-G?nter Theisgen
date Wed May 13 07:41:00 2020 +0100 (2020-05-13)
parents d5aab818505e
children
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 COOKOPTS="force-arch" # different .h
16 SPLIT="$PACKAGE-dev"
18 compile_rules() {
19 ./configure \
20 --disable-static \
21 $CONFIGURE_ARGS &&
22 fix libtool &&
23 make &&
24 make install
25 }
27 genpkg_rules() {
28 case $PACKAGE in
29 liburcu)
30 copy @std
31 ;;
32 *-dev)
33 copy @dev
34 rm -r $fs/usr/share/ # Makefiles in doc/
35 ;;
36 esac
37 }