wok view chrpath/receipt @ rev 23017

updated libcdio libcdio-dev (2.0.0 -> 2.1.0)
author Hans-G?nter Theisgen
date Tue Mar 03 13:41:23 2020 +0100 (2020-03-03)
parents e3270f32432e
children b78e79c31b1f
line source
1 # SliTaz package receipt.
3 PACKAGE="chrpath"
4 VERSION="0.16"
5 CATEGORY="misc"
6 SHORT_DESC="Change or delete the rpath or runpath in ELF files"
7 MAINTAINER="slaxemulator@gmail.com"
8 LICENSE="GPL2"
9 WEB_SITE="http://packages.debian.org/chrpath"
11 TARBALL="${PACKAGE}_${VERSION}.orig.tar.gz"
12 WGET_URL="http://ftp.debian.org/debian/pool/main/c/$PACKAGE/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 sed -i 's|/doc|/share/doc|' Makefile*
18 ./configure \
19 --prefix=/usr \
20 --infodir=/usr/share/info \
21 --mandir=/usr/share/man \
22 $CONFIGURE_ARGS &&
23 make &&
24 make DESTDIR=$DESTDIR install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr
31 cp -a $install/usr/bin $fs/usr
32 }