wok view lyx/receipt @ rev 22420

these 3 packages seem not used in xfce4 v4.12, so reverting to last version in slitaz: 4.10.0: libxfcegui4 libxfcegui4-dev xfce4-mixer
author Erkan Yilmaz <erkan@slitaz.org>
date Sun Dec 15 09:01:23 2019 +0000 (2019-12-15)
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 }