wok view fotoxx/receipt @ rev 5877

busybox: disable mkfs.ext2, no journal support
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Jul 20 20:13:15 2010 +0200 (2010-07-20)
parents 9f19aee613be
children c74549e8caca
line source
1 # SliTaz package receipt.
2 PACKAGE="fotoxx"
3 VERSION="10.7"
4 CATEGORY="graphics"
5 SHORT_DESC="lightweight image editor"
6 MAINTAINER="jozee@slitaz.org"
7 DEPENDS="gtk+"
8 BUILD_DEPENDS="gtk+-dev freeimage freeimage-dev xdg-utils"
9 SUGGESTED="exiftool ufraw printoxx"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WEB_SITE="http://kornelix.squarespace.com/fotoxx"
12 WGET_URL="http://kornelix.squarespace.com/storage/downloads/$TARBALL"
13 TAGS="image editor photo jpeg jpg bmp png gif"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 export PREFIX=/usr make
20 make DESTDIR=$PWD/_pkg install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr/bin $fs/usr/share/$PACKAGE/locales $fs/usr/share/applications
28 cp -a $_pkg/usr/bin $fs/usr
29 cp -a $_pkg/usr/share/$PACKAGE/icons $fs/usr/share/$PACKAGE
30 #non-standard locale path
31 cp -a $_pkg/usr/share/$PACKAGE/locales/* $fs/usr/share/$PACKAGE/locales/
32 cp -a stuff/$PACKAGE.desktop $fs/usr/share/applications
33 }