wok view libexif/receipt @ rev 24027

os-prober: added dependency coreutils
author Hans-G?nter Theisgen
date Wed Mar 24 16:32:15 2021 +0100 (2021-03-24)
parents e24f9f369562
children 5ea0ce1cecc0
line source
1 # SliTaz package receipt.
3 PACKAGE="libexif"
4 VERSION="0.6.22"
5 CATEGORY="system-tools"
6 SHORT_DESC="Reads and writes EXIF metainformation from and to image files."
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="LGPL2.1"
9 WEB_SITE="http://libexif.sourceforge.net/"
11 TARBALL="$PACKAGE-$VERSION.tar.xz"
12 WGET_URL="https://github.com/$PACKAGE/$PACKAGE/releases/download/$PACKAGE-${VERSION//./_}-release/$TARBALL"
14 HOST_ARCH="i486 arm"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 ln -s /bin/sh /usr/bin/sh
20 ./configure \
21 --prefix=/usr \
22 $CONFIGURE_ARGS &&
23 make -j 1 &&
24 make DESTDIR=$DESTDIR install
25 rm /usr/bin/sh
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 mkdir -p $fs/usr/lib
32 cp -a $install/usr/lib/*.so* $fs/usr/lib
33 }