wok 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 | 08fec96a32ad |
children | cc97ba804eb3 |
files | libmypaint-dev/receipt libmypaint-lang/receipt libmypaint/description.txt libmypaint/receipt |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/libmypaint-dev/receipt Tue Mar 22 16:52:59 2022 +0100 1.3 @@ -0,0 +1,18 @@ 1.4 +# SliTaz package receipt. 1.5 + 1.6 +PACKAGE="libmypaint-dev" 1.7 +VERSION="1.6.1" 1.8 +CATEGORY="development" 1.9 +SHORT_DESC="Library for making brushstrokes - development files." 1.10 +MAINTAINER="maintainer@slitaz.org" 1.11 +LICENSE="ISC" 1.12 +WEB_SITE="http://mypaint.org/" 1.13 + 1.14 +DEPENDS="libmypaint" 1.15 +WANTED="libmypaint" 1.16 + 1.17 +# Rules to gen a SliTaz package suitable for Tazpkg. 1.18 +genpkg_rules() 1.19 +{ 1.20 + get_dev_files 1.21 +}
2.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 2.2 +++ b/libmypaint-lang/receipt Tue Mar 22 16:52:59 2022 +0100 2.3 @@ -0,0 +1,17 @@ 2.4 +# SliTaz package receipt. 2.5 + 2.6 +PACKAGE="libmypaint-lang" 2.7 +VERSION="1.6.1" 2.8 +CATEGORY="development" 2.9 +SHORT_DESC="Library for making brushstrokes - localised messages." 2.10 +MAINTAINER="maintainer@slitaz.org" 2.11 +LICENSE="ISC" 2.12 +WEB_SITE="http://mypaint.org/" 2.13 + 2.14 +WANTED="libmypaint" 2.15 + 2.16 +# Rules to gen a SliTaz package suitable for Tazpkg. 2.17 +genpkg_rules() 2.18 +{ 2.19 + cook_copy_folders locale 2.20 +}
3.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 3.2 +++ b/libmypaint/description.txt Tue Mar 22 16:52:59 2022 +0100 3.3 @@ -0,0 +1,2 @@ 3.4 +This is the brush library used by MyPaint. 3.5 +A number of other painting programs use it too.
4.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 4.2 +++ b/libmypaint/receipt Tue Mar 22 16:52:59 2022 +0100 4.3 @@ -0,0 +1,34 @@ 4.4 +# SliTaz package receipt. 4.5 + 4.6 +PACKAGE="libmypaint" 4.7 +VERSION="1.6.1" 4.8 +CATEGORY="development" 4.9 +TAGS="paint" 4.10 +SHORT_DESC="Library for making brushstrokes which is used by MyPaint and other projects." 4.11 +MAINTAINER="maintainer@slitaz.org" 4.12 +LICENSE="ISC" 4.13 +WEB_SITE="http://mypaint.org/" 4.14 + 4.15 +TARBALL="$PACKAGE-$VERSION.tar.xz" 4.16 +WGET_URL="https://github.com/mypaint/$PACKAGE/releases/download/v$VERSION/$TARBALL" 4.17 + 4.18 +DEPENDS="libjson-c" 4.19 +BUILD_DEPENDS="file libjson-c-dev" 4.20 + 4.21 +HOST_ARCH="i486 arm" 4.22 + 4.23 +# Rules to configure and make the package. 4.24 +compile_rules() 4.25 +{ 4.26 + ./configure \ 4.27 + --prefix=/usr \ 4.28 + --enable-static && 4.29 + make && 4.30 + make install 4.31 +} 4.32 + 4.33 +# Rules to gen a SliTaz package suitable for Tazpkg. 4.34 +genpkg_rules() 4.35 +{ 4.36 + cook_copy_files *.so* 4.37 +}