wok view libunwind/receipt @ rev 23936

syslinux/isohybrid: force GPT detection (again)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Sep 09 12:46:01 2020 +0000 (2020-09-09)
parents 6ef615abdd86
children 17091bc7c301
line source
1 # SliTaz package receipt.
3 PACKAGE="libunwind"
4 VERSION="1.3.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 }