wok view graphicsmagick/receipt @ rev 21443

minicom: inserted autogen.sh
author Hans-G?nter Theisgen
date Mon Apr 29 14:48:04 2019 +0100 (2019-04-29)
parents d5caa5733d9e
children a5d5850f11c2
line source
1 # SliTaz package receipt.
3 PACKAGE="graphicsmagick"
4 VERSION="1.3.31"
5 CATEGORY="graphics"
6 SHORT_DESC="The swiss army knife of image processing."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="MIT"
9 WEB_SITE="http://www.graphicsmagick.org/"
11 SOURCE="GraphicsMagick"
12 TARBALL="$SOURCE-$VERSION.tar.xz"
13 WGET_URL="$SF_MIRROR/project/$PACKAGE/$PACKAGE/$VERSION/$TARBALL"
15 DEPENDS="gcc-lib-base bzlib util-linux-uuid libgomp harfbuzz xorg-libSM \
16 xorg-libICE"
17 BUILD_DEPENDS="util-linux-uuid-dev"
19 # Rules to configure and make the package.
20 compile_rules()
21 {
22 ./configure \
23 --prefix=/usr \
24 --infodir=/usr/share/info \
25 --mandir=/usr/share/man \
26 $CONFIGURE_ARGS &&
27 make -j 1 &&
28 make DESTDIR=$DESTDIR install
29 }
31 # Rules to gen a SliTaz package suitable for Tazpkg.
32 genpkg_rules()
33 {
34 mkdir -p $fs/usr
35 cp -a $install/usr/bin $fs/usr
36 }