wok-current rev 22709
updated exempi and exempi-dev (2.1.1 -> 2.5.1)
author | Hans-G?nter Theisgen |
---|---|
date | Wed Jan 22 08:42:50 2020 +0100 (2020-01-22) |
parents | 750962244111 |
children | 0795a5e4e5d3 |
files | exempi-dev/receipt exempi/receipt |
line diff
1.1 --- a/exempi-dev/receipt Tue Jan 21 17:49:56 2020 +0100 1.2 +++ b/exempi-dev/receipt Wed Jan 22 08:42:50 2020 +0100 1.3 @@ -1,20 +1,23 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="exempi-dev" 1.7 -VERSION="2.1.1" 1.8 +VERSION="2.5.1" 1.9 CATEGORY="libdevel" 1.10 +SHORT_DESC="An implementation of XMP (Adobe's Extensible Metadata Platform) - development files." 1.11 +MAINTAINER="yuripourre@gmail.com" 1.12 LICENSE="GPL3" 1.13 -SHORT_DESC="An implementation of XMP (Adobe's Extensible Metadata Platform)." 1.14 -MAINTAINER="yuripourre@gmail.com" 1.15 -WEB_SITE="https://libopenraw.freedesktop.org/wiki/Exempi/" 1.16 +WEB_SITE="https://wiki.freedesktop.org/libopenraw/Exempi/" 1.17 + 1.18 +DEPENDS="exempi pkg-config" 1.19 WANTED="exempi" 1.20 -DEPENDS="exempi pkg-config" 1.21 1.22 # Rules to gen a SliTaz package suitable for Tazpkg. 1.23 genpkg_rules() 1.24 { 1.25 - mkdir -p $fs/usr/lib $fs/usr/include 1.26 - cp -a $install/usr/lib/*.la $fs/usr/lib 1.27 - cp -a $install/usr/lib/pkgconfig $fs/usr/lib 1.28 - cp -a $install/usr/include/* $fs/usr/include 1.29 + mkdir -p $fs/usr/lib 1.30 + mkdir -p $fs/usr/include 1.31 + 1.32 + cp -a $install/usr/lib/*.la $fs/usr/lib 1.33 + cp -a $install/usr/lib/pkgconfig $fs/usr/lib 1.34 + cp -a $install/usr/include/* $fs/usr/include 1.35 }
2.1 --- a/exempi/receipt Tue Jan 21 17:49:56 2020 +0100 2.2 +++ b/exempi/receipt Wed Jan 22 08:42:50 2020 +0100 2.3 @@ -1,24 +1,29 @@ 2.4 # SliTaz package receipt. 2.5 2.6 PACKAGE="exempi" 2.7 -VERSION="2.1.1" 2.8 +VERSION="2.5.1" 2.9 CATEGORY="utilities" 2.10 LICENSE="GPL3" 2.11 SHORT_DESC="An implementation of XMP (Adobe's Extensible Metadata Platform)." 2.12 MAINTAINER="yuripourre@gmail.com" 2.13 +WEB_SITE="https://wiki.freedesktop.org/libopenraw/Exempi/" 2.14 + 2.15 TARBALL="$PACKAGE-$VERSION.tar.gz" 2.16 -WEB_SITE="https://wiki.freedesktop.org/libopenraw/Exempi/" 2.17 WGET_URL="https://libopenraw.freedesktop.org/download/$TARBALL" 2.18 2.19 -DEPENDS="expat" 2.20 -BUILD_DEPENDS="expat-dev libboost-dev libboost-test-dev" 2.21 +DEPENDS="expat gcc83-lib-base" 2.22 +BUILD_DEPENDS="expat-dev gcc83 libboost-dev libboost-test-dev" 2.23 2.24 # Rules to configure and make the package. 2.25 compile_rules() 2.26 { 2.27 - ./configure \ 2.28 - --prefix=/usr \ 2.29 - --enable-static-no \ 2.30 + # unrecognised: 2.31 + # --enable-static-no 2.32 + 2.33 + ./configure \ 2.34 + CC=gcc-83 \ 2.35 + CXX=g++-83 \ 2.36 + --prefix=/usr \ 2.37 $CONFIGURE_ARGS && 2.38 make && 2.39 make DESTDIR=$DESTDIR install 2.40 @@ -28,5 +33,5 @@ 2.41 genpkg_rules() 2.42 { 2.43 mkdir -p $fs/usr/lib 2.44 - cp -a $install/usr/lib/*.so* $fs/usr/lib 2.45 + cp -a $install/usr/lib/*.so* $fs/usr/lib 2.46 }