wok annotate mypaint/receipt @ rev 11680

Up: stella to 3.5.
author Christopher Rogers <slaxemulator@gmail.com>
date Sat Feb 18 08:13:30 2012 -0500 (2012-02-18)
parents
children 408c87fa22ca
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"
devl547@11337 8 WEB_SITE="http://mypaint.intilinux.com/"
devl547@11337 9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
devl547@11337 10 WGET_URL="http://download.gna.org/$PACKAGE/$TARBALL"
devl547@11337 11
devl547@11337 12 DEPENDS="pygtk python-numpy protobuf-python"
devl547@11337 13 BUILD_DEPENDS="$DEPENDS pygtk-dev protobuf-dev python-dev scons swig"
devl547@11337 14
devl547@11337 15 # Rules to configure and make the package.
devl547@11337 16 compile_rules()
devl547@11337 17 {
devl547@11337 18 cd $src
devl547@11337 19 scons
devl547@11337 20 scons prefix=$DESTDIR/usr install
devl547@11337 21 }
devl547@11337 22
devl547@11337 23 # Rules to gen a SliTaz package suitable for Tazpkg.
devl547@11337 24 genpkg_rules()
devl547@11337 25 {
devl547@11337 26 mkdir -p $fs/usr/share
devl547@11337 27 cp -a $install/usr/bin $fs/usr
devl547@11337 28 cp -a $install/usr/share/mypaint $fs/usr/share
devl547@11337 29 cp -a $install/usr/lib $fs/usr
devl547@11337 30 cp -a $install/usr/share/icons $fs/usr/share
devl547@11337 31 }