wok annotate 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
rev   line source
gokhlayeh@7033 1 # SliTaz package receipt.
gokhlayeh@7033 2
gokhlayeh@7033 3 PACKAGE="lyx"
Hans-G?nter@23158 4 VERSION="2.3.4.4"
gokhlayeh@7033 5 CATEGORY="office"
al@13912 6 SHORT_DESC="An advanced WYSIWYM document processor & LaTeX front-end"
gokhlayeh@7033 7 MAINTAINER="gokhlayeh@slitaz.org"
pascal@15002 8 LICENSE="GPL2"
Hans-G?nter@23158 9 WEB_SITE="https://www.lyx.org"
al@13912 10
Hans-G?nter@23158 11 TARBALL="$PACKAGE-$VERSION.tar.gz"
Hans-G?nter@23158 12 WGET_URL="ftp://ftp.lyx.org/pub/lyx/stable/${VERSION%.*.*}.x/$TARBALL"
Hans-G?nter@23158 13
Hans-G?nter@23158 14 DEPENDS="aiksaurus aspell bzlib gcc83-lib-base libQtGui python"
Hans-G?nter@23158 15 BUILD_DEPENDS="aiksaurus-devaspell-dev bison gcc83 python Qt4-dev
Hans-G?nter@23158 16 xorg-libX11-dev"
gokhlayeh@7033 17
gokhlayeh@7033 18 # Rules to configure and make the package.
gokhlayeh@7033 19 compile_rules()
gokhlayeh@7033 20 {
Hans-G?nter@23158 21 # 2.3.4.4 unrecognised:
Hans-G?nter@23158 22 # --with-frontend=qt4
Hans-G?nter@23158 23 ./configure
Hans-G?nter@23158 24 CC=gcc-83 \
Hans-G?nter@23158 25 CXX=g++-83 \
Hans-G?nter@23158 26 $CONFIGURE_ARGS &&
al@13912 27 make &&
al@13912 28 make -j1 install
gokhlayeh@7033 29 }
gokhlayeh@7033 30
gokhlayeh@7033 31 # Rules to gen a SliTaz package suitable for Tazpkg.
gokhlayeh@7033 32 genpkg_rules()
gokhlayeh@7033 33 {
al@13912 34 mkdir -p $fs/usr/share
Hans-G?nter@23158 35
Hans-G?nter@23158 36 cp -a $install/usr/bin $fs/usr
Hans-G?nter@23158 37 cp -a $install/usr/share/lyx $fs/usr/share
Hans-G?nter@23158 38
Hans-G?nter@23158 39 rm -r $fs/usr/share/lyx/doc
Hans-G?nter@23158 40 rm -r $fs/usr/share/lyx/examples
gokhlayeh@7033 41 }
al@18077 42