wok view libunwind/receipt @ rev 22954

updated iperf (2.0.13 -> 3.7)
author Hans-G?nter Theisgen
date Fri Feb 28 15:11:56 2020 +0100 (2020-02-28)
parents fd8b9f3b8878
children 60ff708a9bbf
line source
1 # SliTaz package receipt.
3 PACKAGE="libunwind"
4 VERSION="1.2.1"
5 CATEGORY="development"
6 SHORT_DESC="C programming interface (API) to determine the call-chain of a program."
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="X11"
9 WEB_SITE="https://www.nongnu.org/libunwind/"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="http://download.savannah.gnu.org/releases/libunwind/$TARBALL"
14 DEPENDS="liblzma"
15 BUILD_DEPENDS="liblzma-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 ./configure \
21 $CONFIGURE_ARGS &&
22 make -j 1 &&
23 make install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr/lib
30 cp -a $install/usr/lib/*.so* $fs/usr/lib
31 }