wok annotate liburcu/receipt @ rev 23225

compile mutt again
author Hans-G?nter Theisgen
date Mon Mar 23 16:27:23 2020 +0100 (2020-03-23)
parents 81242ce6ec71
children ede1d184d5c5
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@23116 5 VERSION="0.11.1"
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
Hans-G?nter@23116 29 cp -a $install/usr/lib/*.so* $fs/usr/lib
pascal@19989 30 }