Ticket #22975: Portfile

File Portfile, 1.4 KB (added by patrick@…, 14 years ago)

Portfile for LuaTeX beta 0.47.0

Line 
1# -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4
2# $id$
3PortSystem          1.0
4name                luatex
5version             0.47.0
6categories          tex
7maintainers         gundla.ch:patrick
8description         LuaTeX
9long_description    LuaTeX is the successor of PDFTeX, Aleph and Omega. \
10                    It is a typesetting system based on TeX but full \
11                    unicode aware and programmable in Lua. This package \
12                    provides luatex and texlua binaries only. It is not \
13                    a full featured TeX installation. That means, you \
14                    have to take care of format generation etc.
15homepage            http://luatex.org
16platforms           darwin
17use_bzip2           yes
18use_configure       no
19distname            ${name}-beta-${version}
20master_sites        http://foundry.supelec.fr/gf/download/frsrelease/362/1414/
21checksums           md5 6ce419931551fcd56f79020f9312a629 \
22                    sha1 102450d8c98759a71e220160cdfabe0416b44056 \
23                    rmd160 1ace879eaaf94b4890e71226734a80bec22cc8ad
24build.cmd           ./build.sh
25build.args          --parallel
26build.target       
27destroot {
28    xinstall -m 755 -d ${destroot}${prefix}/bin
29    xinstall -m 755 ${worksrcpath}/build/texk/web2c/luatex ${destroot}${prefix}/bin
30    ln  ${destroot}${prefix}/bin/luatex  ${destroot}${prefix}/bin/texlua
31}