wok-next annotate chrpath/receipt @ rev 20405
Follow BLFS Chapter 9 "General Libraries": up apr, apr-util, aspell, autoconf213 (for js), dbus-glib, enchant, exempi, fftw, glib, glibmm, gmime, gobject-introspection, gsl, js, libboost.
js is 39.7MB / 87.6MB now. Looks like it's proper time to kick off polkit (Hi, Xander! You was right.)
js is 39.7MB / 87.6MB now. Looks like it's proper time to kick off polkit (Hi, Xander! You was right.)
author | Aleksej Bobylev <al.bobylev@gmail.com> |
---|---|
date | Thu Dec 07 17:39:40 2017 +0200 (2017-12-07) |
parents | eb8067417980 |
children | b84b01f3048e |
rev | line source |
---|---|
slaxemulator@6581 | 1 # SliTaz package receipt. |
slaxemulator@6581 | 2 |
slaxemulator@6581 | 3 PACKAGE="chrpath" |
slaxemulator@6581 | 4 VERSION="0.13" |
slaxemulator@6581 | 5 CATEGORY="misc" |
slaxemulator@6581 | 6 SHORT_DESC="Change or delete the rpath or runpath in ELF files" |
slaxemulator@6581 | 7 MAINTAINER="slaxemulator@gmail.com" |
pascal@15579 | 8 LICENSE="GPL2" |
slaxemulator@6581 | 9 TARBALL="${PACKAGE}_${VERSION}.orig.tar.gz" |
slaxemulator@6581 | 10 WEB_SITE="http://packages.debian.org/chrpath" |
slaxemulator@6581 | 11 WGET_URL="http://ftp.debian.org/debian/pool/main/c/$PACKAGE/$TARBALL" |
slaxemulator@6581 | 12 |
slaxemulator@6581 | 13 # Rules to configure and make the package. |
slaxemulator@6581 | 14 compile_rules() |
slaxemulator@6581 | 15 { |
pascal@19284 | 16 sed -i 's|/doc|/share/doc|' Makefile* |
slaxemulator@6581 | 17 ./configure \ |
slaxemulator@6581 | 18 --prefix=/usr \ |
slaxemulator@6581 | 19 --infodir=/usr/share/info \ |
slaxemulator@6581 | 20 --mandir=/usr/share/man \ |
slaxemulator@6581 | 21 $CONFIGURE_ARGS && |
pascal@15579 | 22 make && make DESTDIR=$DESTDIR install |
slaxemulator@6581 | 23 } |
slaxemulator@6581 | 24 |
slaxemulator@6581 | 25 # Rules to gen a SliTaz package suitable for Tazpkg. |
slaxemulator@6581 | 26 genpkg_rules() |
slaxemulator@6581 | 27 { |
slaxemulator@6581 | 28 mkdir -p $fs/usr |
pascal@15579 | 29 cp -a $install/usr/bin $fs/usr |
slaxemulator@6581 | 30 } |
slaxemulator@6581 | 31 |