wok-undigest view latex/receipt @ rev 1223

copied libxext recipe from wok-next
author Hans-G?nter Theisgen
date Fri Nov 15 17:38:29 2019 +0100 (2019-11-15)
parents aba4bc571c91
children
line source
1 # SliTaz package receipt.
3 PACKAGE="latex"
4 SOURCE="texlive"
5 VERSION="20130530"
6 CATEGORY="office"
7 SHORT_DESC="LaTeX is a high-quality typesetting system."
8 MAINTAINER="pascal.bellard@slitaz.org"
9 LICENSE="PublicDomain"
10 TARBALL="$SOURCE-$VERSION-source.tar.xz"
11 WEB_SITE="http://www.latex-project.org/"
12 WGET_URL="ftp://tug.org/historic/systems/texlive/${VERSION:0:4}/$TARBALL"
14 DEPENDS="fontconfig xorg gcc-lib-base ncurses"
15 BUILD_DEPENDS="clisp libffcall fontconfig-dev xorg-dev ncurses-dev freetype \
16 perl libpng-dev freetype-dev pkg-config"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 mkdir $src/../build
22 cd $src/../build
23 $src/configure --prefix=/usr --mandir=/usr/share/man \
24 --disable-native-texlive-build \
25 --enable-shared \
26 --with-system-zlib \
27 --with-system-libpng \
28 --with-system-freetype \
29 --localstatedir=/var \
30 $CONFIGURE_ARGS &&
31 make &&
32 make DESTDIR=$DESTDIR install
33 }
35 # Rules to gen a SliTaz package suitable for Tazpkg.
36 genpkg_rules()
37 {
38 cp -a $install/usr $fs
39 }