wok view lyx/receipt @ rev 12040

postfix: Improve receipt + fix addgroup command
author Eric Joseph-Alexandre <erjo@slitaz.org>
date Wed Mar 07 16:30:58 2012 +0100 (2012-03-07)
parents e40df8ebe0f0
children 3474ac7c6bdd
line source
1 # SliTaz package receipt.
3 PACKAGE="lyx"
4 VERSION="1.6.9"
5 CATEGORY="office"
6 SHORT_DESC="An advanced open-source document processor."
7 MAINTAINER="gokhlayeh@slitaz.org"
8 DEPENDS="qt4 python perl imagemagick aspell aiksaurus"
9 BUILD_DEPENDS="Qt4-dev"
10 TARBALL="$PACKAGE-$VERSION.tar.bz2"
11 WEB_SITE="http://www.lyx.org"
12 WGET_URL="ftp://ftp.lyx.org/pub/lyx/stable/1.6.x/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 ./configure --with-frontend=qt4 $CONFIGURE_ARGS &&
19 make && make -j1 install
20 }
22 # Rules to gen a SliTaz package suitable for Tazpkg.
23 genpkg_rules()
24 {
25 mkdir -p $fs/usr/share
26 cp -a $_pkg/usr/bin $fs/usr
27 cp -a $_pkg/usr/share/lyx $fs/usr/share
28 rm -r $fs/usr/share/lyx/doc $fs/usr/share/lyx/examples
29 }