wok view exempi/receipt @ rev 24526

updated exempi and exempi-dev (2.5.1 -> 2.6.1)
author Hans-G?nter Theisgen
date Tue Feb 22 17:39:50 2022 +0100 (2022-02-22)
parents 2843032e6a9b
children 7c0170dd3ecc
line source
1 # SliTaz package receipt.
3 PACKAGE="exempi"
4 VERSION="2.6.1"
5 CATEGORY="utilities"
6 LICENSE="GPL3"
7 SHORT_DESC="An implementation of XMP (Adobe's Extensible Metadata Platform)."
8 MAINTAINER="yuripourre@gmail.com"
9 WEB_SITE="https://wiki.freedesktop.org/libopenraw/Exempi/"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="https://libopenraw.freedesktop.org/download/$TARBALL"
14 DEPENDS="expat gcc83-lib-base"
15 BUILD_DEPENDS="expat-dev gcc83 libboost-dev libboost-test-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 # unrecognised:
21 # --enable-static-no
23 ./configure \
24 CC=gcc-83 \
25 CXX=g++-83 \
26 --prefix=/usr \
27 $CONFIGURE_ARGS &&
28 make &&
29 make install DESTDIR=$DESTDIR
30 }
32 # Rules to gen a SliTaz package suitable for Tazpkg.
33 genpkg_rules()
34 {
35 cook_copy_folders bin
36 cook_copy_files *.so*
37 }