wok annotate libunwind/receipt @ rev 25176

updated python-formalchemy (1.5.5 -> 1.5.6)
author Hans-G?nter Theisgen
date Fri Jul 01 17:52:21 2022 +0100 (23 months ago)
parents 17091bc7c301
children
rev   line source
pankso@16204 1 # SliTaz package receipt.
pankso@16204 2
pankso@16204 3 PACKAGE="libunwind"
Hans-G?nter@24843 4 VERSION="1.6.2"
pankso@16204 5 CATEGORY="development"
pankso@16204 6 SHORT_DESC="C programming interface (API) to determine the call-chain of a program."
pankso@16204 7 MAINTAINER="pankso@slitaz.org"
Hans-G?nter@24843 8 LICENSE="MIT"
Hans-G?nter@21326 9 WEB_SITE="https://www.nongnu.org/libunwind/"
Hans-G?nter@21326 10
pankso@16204 11 TARBALL="$PACKAGE-$VERSION.tar.gz"
Hans-G?nter@24843 12 WGET_URL="https://download.savannah.gnu.org/releases/libunwind/$TARBALL"
pankso@16204 13
Hans-G?nter@24843 14 DEPENDS="gcc83-lib-base liblzma"
Hans-G?nter@24843 15 BUILD_DEPENDS="gcc83 liblzma-dev"
pankso@16204 16
pascal@24415 17 # What is the latest version available today?
pascal@24415 18 current_version()
pascal@24415 19 {
pascal@24415 20 wget -O - ${WGET_URL%/*} 2>/dev/null | \
pascal@24415 21 sed "/$PACKAGE-/!d;/tar/!d;s|.*$PACKAGE-||;s|.tar.*||" | sort -Vr | sed q
pascal@24415 22 }
pascal@24415 23
pankso@16204 24 # Rules to configure and make the package.
pankso@16204 25 compile_rules()
pankso@16204 26 {
Hans-G?nter@24843 27 ./configure \
Hans-G?nter@24843 28 CC=gcc-83 \
Hans-G?nter@24843 29 CXX=g++-83 \
pankso@16204 30 $CONFIGURE_ARGS &&
Hans-G?nter@24843 31 make &&
Hans-G?nter@21326 32 make install
pankso@16204 33 }
pankso@16204 34
pankso@16204 35 # Rules to gen a SliTaz package suitable for Tazpkg.
pankso@16204 36 genpkg_rules()
pankso@16204 37 {
Hans-G?nter@24843 38 cook_copy_files *.so*
pankso@16204 39 }