wok-6.x view mypaint/receipt @ rev 22437
john: fix link, add to right place
author | Erkan Yilmaz <erkan@slitaz.org> |
---|---|
date | Sun Dec 22 16:03:18 2019 +0000 (2019-12-22) |
parents | 408c87fa22ca |
children | 241fb98cab1c |
line source
1 # SliTaz package receipt.
3 PACKAGE="mypaint"
4 VERSION="1.0.0"
5 CATEGORY="graphics"
6 SHORT_DESC="A fast and easy painting application for digital painters, with brush dynamics"
7 MAINTAINER="slaxemulator@gmail.com"
8 LICENSE="GPL2"
9 WEB_SITE="http://mypaint.org/"
10 TARBALL="$PACKAGE-$VERSION.tar.bz2"
11 WGET_URL="http://download.gna.org/$PACKAGE/$TARBALL"
13 DEPENDS="pygtk python-numpy protobuf-python"
14 BUILD_DEPENDS="$DEPENDS pygtk-dev protobuf-dev python-dev scons swig"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 scons
20 scons prefix=$DESTDIR/usr install
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 mkdir -p $fs/usr/share
27 cp -a $install/usr/bin $fs/usr
28 cp -a $install/usr/share/mypaint $fs/usr/share
29 cp -a $install/usr/lib $fs/usr
30 cp -a $install/usr/share/icons $fs/usr/share
31 }