wok view lyx/receipt @ rev 17357

Add asterisk-googletts
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Nov 18 18:14:47 2014 +0100 (2014-11-18)
parents c381a12e66ee
children 16df76e1fc6a
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 }