wok view lyx/receipt @ rev 23158

updated lyx, lyx-doc lyx-examples and lyx-locales (2.0.5.1 -> 2.3.4.4)
author Hans-G?nter Theisgen
date Tue Mar 17 13:34:46 2020 +0100 (2020-03-17)
parents 16df76e1fc6a
children 7b490147fcec
line source
1 # SliTaz package receipt.
3 PACKAGE="lyx"
4 VERSION="2.3.4.4"
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="https://www.lyx.org"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="ftp://ftp.lyx.org/pub/lyx/stable/${VERSION%.*.*}.x/$TARBALL"
14 DEPENDS="aiksaurus aspell bzlib gcc83-lib-base libQtGui python"
15 BUILD_DEPENDS="aiksaurus-devaspell-dev bison gcc83 python Qt4-dev
16 xorg-libX11-dev"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 # 2.3.4.4 unrecognised:
22 # --with-frontend=qt4
23 ./configure
24 CC=gcc-83 \
25 CXX=g++-83 \
26 $CONFIGURE_ARGS &&
27 make &&
28 make -j1 install
29 }
31 # Rules to gen a SliTaz package suitable for Tazpkg.
32 genpkg_rules()
33 {
34 mkdir -p $fs/usr/share
36 cp -a $install/usr/bin $fs/usr
37 cp -a $install/usr/share/lyx $fs/usr/share
39 rm -r $fs/usr/share/lyx/doc
40 rm -r $fs/usr/share/lyx/examples
41 }