wok-next diff exempi/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 | 2f3aba6cc31e |
children | 835b3b8ce6ac |
line diff
1.1 --- a/exempi/receipt Mon Jun 12 11:39:09 2017 +0300 1.2 +++ b/exempi/receipt Thu Dec 07 17:39:40 2017 +0200 1.3 @@ -1,12 +1,13 @@ 1.4 # SliTaz package receipt v2. 1.5 1.6 PACKAGE="exempi" 1.7 -VERSION="2.4.2" 1.8 +VERSION="2.4.3" 1.9 CATEGORY="utilities" 1.10 LICENSE="GPL3" 1.11 SHORT_DESC="An implementation of XMP (Adobe's Extensible Metadata Platform)" 1.12 MAINTAINER="yuripourre@gmail.com" 1.13 WEB_SITE="https://libopenraw.freedesktop.org/wiki/Exempi/" 1.14 +LFS="http://www.linuxfromscratch.org/blfs/view/stable/general/exempi.html" 1.15 1.16 TARBALL="$PACKAGE-$VERSION.tar.gz" 1.17 WGET_URL="https://libopenraw.freedesktop.org/download/$TARBALL" 1.18 @@ -14,21 +15,23 @@ 1.19 BUILD_DEPENDS="expat-dev zlib-dev libboost-dev libboost-unit-test-framework" 1.20 SPLIT="exempi-dev" 1.21 1.22 -# Rules to configure and make the package. 1.23 -compile_rules() 1.24 -{ 1.25 +compile_rules() { 1.26 ./configure \ 1.27 --disable-static \ 1.28 $CONFIGURE_ARGS && 1.29 make && 1.30 - make DESTDIR=$DESTDIR install 1.31 + make install 1.32 } 1.33 1.34 -# Rules to gen a SliTaz package suitable for Tazpkg. 1.35 -genpkg_rules() 1.36 -{ 1.37 +genpkg_rules() { 1.38 case $PACKAGE in 1.39 - exempi) copy @std; DEPENDS="expat zlib";; 1.40 - *-dev) copy @dev; DEPENDS="expat-dev zlib-dev";; 1.41 + exempi) 1.42 + copy @std 1.43 + DEPENDS="expat zlib" 1.44 + ;; 1.45 + *-dev) 1.46 + copy @dev 1.47 + DEPENDS="exempi expat-dev zlib-dev" 1.48 + ;; 1.49 esac 1.50 }