wok view tiff/receipt @ rev 23848

inkscape: update build_depends
author Richard Dunbar <mojo@slitaz.org>
date Sun Jun 14 23:18:03 2020 -0400 (2020-06-14)
parents 4e0a230340e9
children 5d79829fa876
line source
1 # SliTaz package receipt.
3 PACKAGE="tiff"
4 VERSION="4.1.0"
5 CATEGORY="x-window"
6 SHORT_DESC="A library of functions for manipulating TIFF format image files."
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="MIT"
9 WEB_SITE="http://www.libtiff.org/"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="https://download.osgeo.org/libtiff/$TARBALL"
14 DEPENDS="gcc-lib-base jpeg zlib"
15 BUILD_DEPENDS="jbigkit jpeg-dev zlib-dev"
17 HOST_ARCH="i486 arm"
19 # Rules to configure and make the package.
20 compile_rules()
21 {
22 ./configure $CONFIGURE_ARGS &&
23 make &&
24 make install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr/lib
31 cp -a $install/usr/lib/*.so* $fs/usr/lib
32 }