wok view mtpaint/receipt @ rev 17958
Add python-ofxparse
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Thu Apr 16 18:39:34 2015 +0200 (2015-04-16) |
parents | fd7c7b825eb9 |
children | f6642d800b04 |
line source
1 # SliTaz package receipt.
3 PACKAGE="mtpaint"
4 VERSION="3.44.91"
5 COMMIT="15ec7b65d09bff5372253f9568d06ea97487f9dc"
6 CATEGORY="graphics"
7 SHORT_DESC="Painting program to create pixel art and manipulate digital photos"
8 MAINTAINER="pankso@slitaz.org"
9 LICENSE="GPL3"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WEB_SITE="http://mtpaint.sourceforge.net/"
12 #WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
13 WGET_URL="https://github.com/wjaguar/mtPaint/archive/$COMMIT.tar.gz"
14 #HOST_ARCH="i486 arm"
16 DEPENDS="gtk+ libpng lcms"
17 BUILD_DEPENDS="gtk+-dev libpng-dev lcms-dev zlib-dev"
19 # Rules to configure and make the package.
20 compile_rules()
21 {
22 case "$ARCH" in
23 i?86)
24 ./configure \
25 --cpu=$ARCH \
26 --prefix=/usr \
27 intl nogif ;;
28 arm*)
29 # we need: arm-slitaz-linux-gnueabi-pkg-config
30 ./configure \
31 --prefix=/usr \
32 --host=${HOST_SYSTEM} \
33 intl nogif
34 esac && make &&
35 make DESTDIR=$install install
36 }
38 # Rules to gen a SliTaz package suitable for Tazpkg.
39 genpkg_rules()
40 {
41 mkdir -p $fs/usr/share/applications
42 cp -a $install/usr/bin $fs/usr
43 cp $stuff/*.desktop $fs/usr/share/applications
44 }