wok annotate lyx/receipt @ rev 24315

updated lyx packages (2.3.4.4 -> 2.3.6.1)
author Hans-G?nter Theisgen
date Tue Jan 25 09:28:05 2022 +0100 (2022-01-25)
parents 9d241cbf5701
children 7cfc423aaa00
rev   line source
gokhlayeh@7033 1 # SliTaz package receipt.
gokhlayeh@7033 2
gokhlayeh@7033 3 PACKAGE="lyx"
Hans-G?nter@24315 4 VERSION="2.3.6.1"
gokhlayeh@7033 5 CATEGORY="office"
Hans-G?nter@24315 6 SHORT_DESC="An advanced WYSIWYM document processor and LaTeX front-end."
gokhlayeh@7033 7 MAINTAINER="gokhlayeh@slitaz.org"
pascal@15002 8 LICENSE="GPL2"
Hans-G?nter@24315 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
pascal@23978 14 DEPENDS="aiksaurus aspell bzlib gcc83-lib-base libQtGui libQtSvg python"
Hans-G?nter@23159 15 BUILD_DEPENDS="aiksaurus-dev aspell-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@24315 23 ./configure \
Hans-G?nter@24315 24 CC=gcc-83 \
Hans-G?nter@24315 25 CXX=g++-83 \
Hans-G?nter@23158 26 $CONFIGURE_ARGS &&
al@13912 27 make &&
Hans-G?nter@24315 28 make 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