wok-6.x annotate liburcu/receipt @ rev 22612
updated codeblocks again (10.05 -> 17.12)
author | Hans-G?nter Theisgen |
---|---|
date | Fri Jan 10 13:36:24 2020 +0100 (2020-01-10) |
parents | 5ffe5c4c78fd |
children | 9d1055261327 |
rev | line source |
---|---|
pascal@19989 | 1 # SliTaz package receipt. |
pascal@19989 | 2 |
pascal@19989 | 3 PACKAGE="liburcu" |
pascal@19989 | 4 SOURCE="userspace-rcu" |
Hans-G?nter@21328 | 5 VERSION="0.10.2" |
pascal@19989 | 6 CATEGORY="system-tools" |
pascal@19989 | 7 SHORT_DESC="Userspace RCU (read-copy-update) library." |
pascal@19989 | 8 MAINTAINER="pascal.bellard@slitaz.org" |
pascal@19989 | 9 LICENSE="LGPL2.1" |
Hans-G?nter@21328 | 10 WEB_SITE="https://liburcu.org/" |
Hans-G?nter@21328 | 11 |
pascal@19989 | 12 TARBALL="$SOURCE-$VERSION.tar.bz2" |
Hans-G?nter@21328 | 13 WGET_URL="https://www.lttng.org/files/urcu/$TARBALL" |
pascal@19989 | 14 |
pascal@19989 | 15 # Rules to configure and make the package. |
pascal@19989 | 16 compile_rules() |
pascal@19989 | 17 { |
Hans-G?nter@21328 | 18 ./configure \ |
Hans-G?nter@21328 | 19 --prefix=/usr \ |
pascal@19989 | 20 $CONFIGURE_ARGS |
Hans-G?nter@21328 | 21 make -j 1 && |
pascal@19989 | 22 make DESTDIR=$DESTDIR install |
pascal@19989 | 23 } |
pascal@19989 | 24 |
pascal@19989 | 25 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@19989 | 26 genpkg_rules() |
pascal@19989 | 27 { |
pascal@19989 | 28 mkdir -p $fs/usr/lib |
pascal@19989 | 29 cp -a $install/usr/lib/*.so* $fs/usr/lib |
pascal@19989 | 30 } |