wok view xpaint/receipt @ rev 16481

xpaint: clean up packaged files
author Christophe Lincoln <pankso@slitaz.org>
date Wed Apr 23 03:43:46 2014 +0200 (2014-04-23)
parents fb6d54ed7503
children 0e0595f9d60c
line source
1 # SliTaz package receipt.
3 PACKAGE="xpaint"
4 VERSION="2.9.10.2"
5 CATEGORY="graphics"
6 SHORT_DESC="Simple paint program for X"
7 MAINTAINER="mojo@slitaz.org"
8 LICENSE="GPL3"
9 WEB_SITE="http://sf-xpaint.sourceforge.net/"
10 TARBALL="$PACKAGE-$VERSION.tar.bz2"
11 WGET_URL="$SF_MIRROR/sf-$PACKAGE/$TARBALL"
12 HOST_ARCH="i486 arm"
14 DEPENDS="openjpeg libXaw3dXft xorg-libXaw3d"
15 BUILD_DEPENDS="openjpeg-dev libXaw3dXft-dev libpng-dev jpeg-dev tiff-dev \
16 expat-dev libxml2-dev util-linux-uuid-dev xorg-libXaw3d-dev"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 case "$ARCH" in
22 i?86) LIBTOOL=libtool ;;
23 arm) LIBTOOL=${HOST_SYSTEM}-libtool ;;
24 esac
25 ./configure $CONFIGURE_ARGS &&
26 # Fix cross compilation
27 sed -i s'/$(CC) substads.c/gcc substads.c/' Makefile &&
28 sed -i s'/$(CC) preproc.c/gcc preproc.c/' Makefile &&
29 make -j 1 LIBTOOL=${LIBTOOL} && make install
30 }
32 # Rules to gen a SliTaz package suitable for Tazpkg.
33 genpkg_rules()
34 {
35 mkdir -p $fs/usr/share/pixmaps
36 cp -a $install/* $fs/
37 rm -f $fs/usr/lib/*.*a
38 rm -r $fs/usr/share/xpaint/include
39 cp $stuff/xpaint.xpm $fs/usr/share/pixmaps
40 }