wok-current view libmypaint/receipt @ rev 24809
created recipes for libmypaint, libmypaint-dev and libmypaint-lang
author | Hans-G?nter Theisgen |
---|---|
date | Tue Mar 22 16:52:59 2022 +0100 (2022-03-22) |
parents | |
children | cc97ba804eb3 |
line source
1 # SliTaz package receipt.
3 PACKAGE="libmypaint"
4 VERSION="1.6.1"
5 CATEGORY="development"
6 TAGS="paint"
7 SHORT_DESC="Library for making brushstrokes which is used by MyPaint and other projects."
8 MAINTAINER="maintainer@slitaz.org"
9 LICENSE="ISC"
10 WEB_SITE="http://mypaint.org/"
12 TARBALL="$PACKAGE-$VERSION.tar.xz"
13 WGET_URL="https://github.com/mypaint/$PACKAGE/releases/download/v$VERSION/$TARBALL"
15 DEPENDS="libjson-c"
16 BUILD_DEPENDS="file libjson-c-dev"
18 HOST_ARCH="i486 arm"
20 # Rules to configure and make the package.
21 compile_rules()
22 {
23 ./configure \
24 --prefix=/usr \
25 --enable-static &&
26 make &&
27 make install
28 }
30 # Rules to gen a SliTaz package suitable for Tazpkg.
31 genpkg_rules()
32 {
33 cook_copy_files *.so*
34 }