wok-next view liburcu/receipt @ rev 21724

busybox: update configs
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Sep 01 11:04:25 2020 +0000 (2020-09-01)
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 }