Ticket #28119: Portfile

File Portfile, 1.5 KB (added by patrick@…, 13 years ago)

New Portfile

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.65.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}-source
20worksrcdir          ${name}-beta-${version}
21master_sites        http://foundry.supelec.fr/gf/download/frsrelease/386/1704/
22checksums           md5 7089d840cef28cd220e6b7bad0a8f78b \
23                    sha1 5d01dc1dbc46b8c654ca5a45f3b537cae8a2cf6d \
24                    rmd160 c23ac8c3cc26c9064f099c5789ae64edd22fc1a7
25build.cmd           ./build.sh
26build.args          --parallel
27build.target       
28destroot {
29    xinstall -m 755 -d ${destroot}${prefix}/bin
30    xinstall -m 755 ${worksrcpath}/build/texk/web2c/luatex ${destroot}${prefix}/bin
31    ln  ${destroot}${prefix}/bin/luatex  ${destroot}${prefix}/bin/texlua
32}