wok view liburcu/receipt @ rev 21769

sane-backends: enlarge preview image
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Jul 01 12:04:05 2019 +0200 (2019-07-01)
parents 5ffe5c4c78fd
children 9d1055261327
line source
1 # SliTaz package receipt.
3 PACKAGE="liburcu"
4 SOURCE="userspace-rcu"
5 VERSION="0.10.2"
6 CATEGORY="system-tools"
7 SHORT_DESC="Userspace RCU (read-copy-update) library."
8 MAINTAINER="pascal.bellard@slitaz.org"
9 LICENSE="LGPL2.1"
10 WEB_SITE="https://liburcu.org/"
12 TARBALL="$SOURCE-$VERSION.tar.bz2"
13 WGET_URL="https://www.lttng.org/files/urcu/$TARBALL"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 ./configure \
19 --prefix=/usr \
20 $CONFIGURE_ARGS
21 make -j 1 &&
22 make DESTDIR=$DESTDIR install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr/lib
29 cp -a $install/usr/lib/*.so* $fs/usr/lib
30 }