wok annotate liburcu/receipt @ rev 21207
Up pure-ftpd (1.0.48)
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Mon Apr 08 19:08:56 2019 +0200 (2019-04-08) |
parents | |
children | 81242ce6ec71 |
rev | line source |
---|---|
pascal@19989 | 1 # SliTaz package receipt. |
pascal@19989 | 2 |
pascal@19989 | 3 PACKAGE="liburcu" |
pascal@19989 | 4 SOURCE="userspace-rcu" |
pascal@19989 | 5 VERSION="0.10.0" |
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" |
pascal@19989 | 10 TARBALL="$SOURCE-$VERSION.tar.bz2" |
pascal@19989 | 11 WEB_SITE="http://liburcu.org/" |
pascal@19989 | 12 WGET_URL="http://www.lttng.org/files/urcu/$TARBALL" |
pascal@19989 | 13 |
pascal@19989 | 14 # Rules to configure and make the package. |
pascal@19989 | 15 compile_rules() |
pascal@19989 | 16 { |
pascal@19989 | 17 ./configure \ |
pascal@19989 | 18 --prefix=/usr \ |
pascal@19989 | 19 $CONFIGURE_ARGS |
pascal@19989 | 20 make && |
pascal@19989 | 21 make DESTDIR=$DESTDIR install |
pascal@19989 | 22 } |
pascal@19989 | 23 |
pascal@19989 | 24 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@19989 | 25 genpkg_rules() |
pascal@19989 | 26 { |
pascal@19989 | 27 mkdir -p $fs/usr/lib |
pascal@19989 | 28 cp -a $install/usr/lib/*.so* $fs/usr/lib |
pascal@19989 | 29 } |