wok view libunwind/receipt @ rev 19235

Build httpfs-static
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Jun 26 12:11:14 2016 +0200 (2016-06-26)
parents
children 6ef615abdd86
line source
1 # SliTaz package receipt.
3 PACKAGE="libunwind"
4 VERSION="1.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="custom"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://www.nongnu.org/libunwind/"
11 WGET_URL="http://download.savannah.gnu.org/releases/libunwind/$TARBALL"
13 DEPENDS="liblzma"
14 BUILD_DEPENDS="liblzma-dev"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 ./configure \
20 $CONFIGURE_ARGS &&
21 make && make install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr/lib
28 cp -a $install/usr/lib/*.so* $fs/usr/lib
29 }