wok view lyx/receipt @ rev 20734

updated azpainter (2.0.4 -> 2.1.3)
author Hans-G?nter Theisgen
date Sat Feb 09 17:15:55 2019 +0100 (2019-02-09)
parents 7896f0694ef6
children 2ddb05ff23b9
line source
1 # SliTaz package receipt.
3 PACKAGE="lyx"
4 VERSION="2.0.5.1"
5 CATEGORY="office"
6 SHORT_DESC="An advanced WYSIWYM document processor & LaTeX front-end"
7 MAINTAINER="gokhlayeh@slitaz.org"
8 LICENSE="GPL2"
9 WEB_SITE="http://www.lyx.org"
10 TARBALL="$PACKAGE-$VERSION.tar.xz"
11 WGET_URL="ftp://ftp.lyx.org/pub/lyx/stable/2.0.x/$TARBALL"
13 DEPENDS="aiksaurus aspell bzlib libQtGui python"
14 BUILD_DEPENDS="python Qt4-dev bison aspell-dev xorg-libX11-dev aiksaurus-dev"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 ./configure --with-frontend=qt4 $CONFIGURE_ARGS &&
20 make &&
21 make -j1 install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr/share
28 cp -a $install/usr/bin $fs/usr
29 cp -a $install/usr/share/lyx $fs/usr/share
30 rm -r $fs/usr/share/lyx/doc $fs/usr/share/lyx/examples
31 }