wok view libunwind/receipt @ rev 17710

Up inkscape (0.91) thanks to Joshida
author Yuri Pourre <yuripourre@gmail.com>
date Tue Mar 03 23:28:10 2015 -0300 (2015-03-03)
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 }