wok-next view azpainter/receipt @ rev 21727

created recipe for vbindiff
author Hans-G?nter Theisgen
date Sat Nov 21 14:32:44 2020 +0100 (2020-11-21)
parents 5669e8b3be70
children
line source
1 # SliTaz package receipt v2.
3 PACKAGE="azpainter"
4 VERSION="2.1.3"
5 CATEGORY="graphics"
6 SHORT_DESC="Full color painting software for illustration drawing"
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL3 BSD"
9 WEB_SITE="https://osdn.net/projects/azpainter/"
11 TARBALL="$PACKAGE-$VERSION.tar.xz"
12 WGET_URL="https://osdn.net/dl/azpainter/$TARBALL"
14 # Use GNU wget because Busybox wget can't follow redirection
15 BUILD_DEPENDS="fontconfig-dev freetype-dev libjpeg-turbo-dev \
16 libx11-dev libxext-dev libxi-dev wget"
18 compile_rules()
19 {
20 # regenerate translations after patching
21 cd translation
22 make
23 for i in en be ja pt_BR ru uk zh_CN
24 do
25 ./mtrconv $i $i.mtr
26 done
27 cd -
29 ./configure $CONFIGURE_ARGS &&
30 make &&
31 make install-strip || return 1
33 cp -f translation/*.mtr $install/usr/share/azpainter/tr/
34 }
36 genpkg_rules()
37 {
38 copy @std
39 DEPENDS="fontconfig freetype libjpeg-turbo libpng libx11 \
40 libxext libxi zlib"
41 }