wok view mypaint-brushes/receipt @ rev 24936

created recipe for mypaint-brushes
author Hans-G?nter Theisgen
date Thu Apr 14 09:08:33 2022 +0100 (2022-04-14)
parents
children ea67ada22d06
line source
1 # SliTaz package receipt.
3 PACKAGE="mypaint-brushes"
4 VERSION="2.0.2"
5 CATEGORY="graphics"
6 SHORT_DESC="Brushes used by MyPaint and other software using libmypaint."
7 MAINTAINER="maintainer@slitaz.org"
8 LICENSE="CC0"
9 WEB_SITE="https://github.com/mypaint/mypaint-brushes"
11 TARBALL="$PACKAGE-$VERSION.tar.xz"
12 WGET_URL="https://github.com/mypaint/$PACKAGE/releases/download/v$VERSION/$TARBALL"
14 BUILD_DEPENDS="automake"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 autoreconf -i &&
20 ./configure \
21 --prefix=/usr \
22 --sysconfdir=/etc \
23 --mandir=/usr/share/man \
24 --localstatedir=/var &&
25 make &&
26 make install
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 mkdir -p $fs/usr/lib
34 cook_copy_folders mypaint-data
35 cp -a $install/usr/share/pkgconfig $fs/usr/lib
36 }