wok annotate mypaint/receipt @ rev 15367

Add wimlib
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Oct 12 12:04:33 2013 +0000 (2013-10-12)
parents 62a2f3d36fba
children 56ab00f400e9
rev   line source
devl547@11337 1 # SliTaz package receipt.
devl547@11337 2
devl547@11337 3 PACKAGE="mypaint"
devl547@11337 4 VERSION="1.0.0"
devl547@11337 5 CATEGORY="graphics"
devl547@11337 6 SHORT_DESC="A fast and easy painting application for digital painters, with brush dynamics"
devl547@11337 7 MAINTAINER="slaxemulator@gmail.com"
pascal@15001 8 LICENSE="GPL2"
devl547@11337 9 WEB_SITE="http://mypaint.intilinux.com/"
devl547@11337 10 TARBALL="$PACKAGE-$VERSION.tar.bz2"
devl547@11337 11 WGET_URL="http://download.gna.org/$PACKAGE/$TARBALL"
devl547@11337 12
devl547@11337 13 DEPENDS="pygtk python-numpy protobuf-python"
devl547@11337 14 BUILD_DEPENDS="$DEPENDS pygtk-dev protobuf-dev python-dev scons swig"
devl547@11337 15
devl547@11337 16 # Rules to configure and make the package.
devl547@11337 17 compile_rules()
devl547@11337 18 {
devl547@11337 19 cd $src
devl547@11337 20 scons
devl547@11337 21 scons prefix=$DESTDIR/usr install
devl547@11337 22 }
devl547@11337 23
devl547@11337 24 # Rules to gen a SliTaz package suitable for Tazpkg.
devl547@11337 25 genpkg_rules()
devl547@11337 26 {
devl547@11337 27 mkdir -p $fs/usr/share
devl547@11337 28 cp -a $install/usr/bin $fs/usr
devl547@11337 29 cp -a $install/usr/share/mypaint $fs/usr/share
devl547@11337 30 cp -a $install/usr/lib $fs/usr
devl547@11337 31 cp -a $install/usr/share/icons $fs/usr/share
devl547@11337 32 }