# HG changeset patch # User Hans-G?nter Theisgen # Date 1559383476 -3600 # Node ID 0847cb95b143749f92289fe798531e194b84c919 # Parent 9cc63da7035a6533cac54fc39ae834cf0877ac4c updated patchelf (0.8 -> 0.10) diff -r 9cc63da7035a -r 0847cb95b143 patchelf/receipt --- a/patchelf/receipt Sat Jun 01 10:50:09 2019 +0100 +++ b/patchelf/receipt Sat Jun 01 11:04:36 2019 +0100 @@ -1,21 +1,29 @@ # SliTaz package receipt. PACKAGE="patchelf" -VERSION="0.8" +VERSION="0.10" CATEGORY="development" SHORT_DESC="Modify the dynamic linker and RPATH of ELF executables." MAINTAINER="pascal.bellard@slitaz.org" LICENSE="GPL3" -TARBALL="$PACKAGE-$VERSION.tar.bz2" WEB_SITE="https://nixos.org/patchelf.html" -WGET_URL="https://nixos.org/releases/$PACKAGE/$PACKAGE-$VERSION/$TARBALL" -DEPENDS="gcc-lib-base" +TARBALL="$PACKAGE-$VERSION.tar.gz" +WGET_URL="https://github.com/NixOS/$PACKAGE/archive/$VERSION.tar.gz" + +DEPENDS="gcc83-lib-base" +BUILD_DEPENDS="automake gcc83" # Rules to configure and make the package. compile_rules() { - ./configure --prefix=/usr --mandir=/usr/share/man \ + export CC=gcc-83 + export CXX=g++-83 + + ./bootstrap.sh && + ./configure \ + --prefix=/usr \ + --mandir=/usr/share/man \ $CONFIGURE_ARGS && make && make DESTDIR=$DESTDIR install