wok view liburcu/receipt @ rev 20205
Up busybox (1.18.1)
| author | Pascal Bellard <pascal.bellard@slitaz.org> | 
|---|---|
| date | Tue Feb 20 18:10:43 2018 +0100 (2018-02-20) | 
| parents | |
| children | 81242ce6ec71 | 
 line source
     1 # SliTaz package receipt.
     3 PACKAGE="liburcu"
     4 SOURCE="userspace-rcu"
     5 VERSION="0.10.0"
     6 CATEGORY="system-tools"
     7 SHORT_DESC="Userspace RCU (read-copy-update) library."
     8 MAINTAINER="pascal.bellard@slitaz.org"
     9 LICENSE="LGPL2.1"
    10 TARBALL="$SOURCE-$VERSION.tar.bz2"
    11 WEB_SITE="http://liburcu.org/"
    12 WGET_URL="http://www.lttng.org/files/urcu/$TARBALL"
    14 # Rules to configure and make the package.
    15 compile_rules()
    16 {
    17 	./configure \
    18 		--prefix=/usr \
    19 		$CONFIGURE_ARGS
    20 	make &&
    21 	make DESTDIR=$DESTDIR install
    22 }
    24 # Rules to gen a SliTaz package suitable for Tazpkg.
    25 genpkg_rules()
    26 {
    27 	mkdir -p $fs/usr/lib
    28 	cp -a $install/usr/lib/*.so* $fs/usr/lib
    29 }