Ticket #54699: Portfile.2

File Portfile.2, 2.0 KB (added by mf2k (Frank Schima), 7 years ago)
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
3PortSystem          1.0
4PortGroup github    1.0
5
6github.setup        mamedev mame mame0189
7version             0.189
8categories          emulators
9maintainers         nomaintainer
10platforms           darwin
11license             GPL-2
12homepage            http://mamedev.org/index.php
13
14description         Multiple Arcade Machine Emulator
15long_description    The purpose of MAME is to preserve decades of software history. As \
16    electronic technology continues to rush forward, MAME prevents this important \
17    "vintage" software from being lost and forgotten. This is achieved by documenting \
18    the hardware and how it functions. The source code to MAME serves as this \
19    documentation.
20
21checksums           rmd160  766cef7dca20cab35f429799682dd12fddb16855 \
22                    sha256  73bb54ce1ae9c6173ee62254150e1fec73b8305dfaaf5bf410c33671fe2cac4d
23
24depends_lib-append  \
25                    port:expat \
26                    port:flac \
27                    port:jpeg \
28                    port:libiconv \
29                    port:libsdl2 \
30                    port:libutf8proc \
31                    port:lua \
32                    port:portaudio \
33                    port:portmidi \
34                    port:sqlite3 \
35                    port:zlib
36
37use_configure       no
38
39build.args-append   CC=${configure.cc} \
40                    CXX=${configure.cxx} \
41                    CPP=${configure.cpp} \
42                    USE_LIBSDL=1 \
43                    USE_SYSTEM_LIB_EXPAT=1 \
44                    USE_SYSTEM_LIB_FLAC=1 \
45                    USE_SYSTEM_LIB_JPEG=1 \
46                    USE_SYSTEM_LIB_LUA=1 \
47                    USE_SYSTEM_LIB_PORTAUDIO=1 \
48                    USE_SYSTEM_LIB_PORTMIDI=1 \
49                    USE_SYSTEM_LIB_SQLITE3=1 \
50                    USE_SYSTEM_LIB_UTF8PROC=1 \
51                    USE_SYSTEM_LIB_ZLIB=1
52
53destroot {
54    xinstall ${worksrcpath}/mame64 ${destroot}${prefix}/bin
55}