Ticket #44070: Portfile

File Portfile, 1.9 KB (added by jruschme@…, 10 years ago)

Revised Portfile for lang/blassic

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: Portfile 83385 2011-08-31 01:52:26Z dports@macports.org $
3
4PortSystem              1.0
5
6name                    blassic
7version                 0.10.2
8revision                1
9categories              lang
10platforms               darwin
11license                 GPL-2
12maintainers             nomaintainer
13homepage                http://blassic.net/
14master_sites            ${homepage}bin/
15
16description             Blassic is a classic Basic interpreter
17
18long_description        Blassic is a classic Basic interpreter. The line \
19                        numbers are mandatory, and it has PEEK & POKE. The \
20                        main goal is to execute programs written in old \
21                        interpreters, even those that use peculiar control \
22                        flow constructs or automodifiable code. However, it \
23                        can be used as a scripting language, and has some \
24                        not-so-classic instructions. It has graphics modes \
25                        that are compatible with some classic systems and \
26                        user defined.
27
28depends_lib             port:ncurses
29
30extract.suffix          .tgz
31
32checksums               md5     37534abbdbe5bac7b7fc00dbe119df92 \
33                        sha1    35d99ed793a3ae4a1e5ddd1c3eb6f584a2479d0c \
34                        rmd160  9e465dcbfc3d3fb794df40893710808f64b917c5
35
36configure.args          --disable-graphics
37
38post-destroot {
39    set docdir ${destroot}${prefix}/share/doc/${name}
40    xinstall -d ${docdir}
41    xinstall -m 644 -W ${worksrcpath} \
42        AUTHORS \
43        COPYING \
44        NEWS \
45        README \
46        THANKS \
47        TODO \
48        ${docdir}
49}
50
51livecheck.type          regex
52livecheck.regex         {Current version is ([0-9.]+)}