Ticket #17819: Portfile

File Portfile, 1.4 KB (added by martin.osx@…, 15 years ago)

The portfile itself

Line 
1# -*- coding: utf-8; mode: tcl; tab-width: 4; truncate-lines: t; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:et:sw=4:ts=4:sts=4
2# $Id: Portfile 21 2008-12-29 08:55:48Z krischik@users.sourceforge.net $
3
4PortSystem 1.0
5
6name                            nrg4iso
7version                         1.0.1
8revision                        1
9platforms                       darwin
10categories                      emulators
11maintainers                     krischik@me.com
12description                     nrg4iso extracts data from a Nero Burning ROM image file (.nrg).
13long_description        nrg4iso is a command line utility designed to extract data from \
14                                        a Nero Burning ROM image file (.nrg). Nrg image files may contain \
15                                        various types of data (audio, iso9660,...) and nrg4iso will as \
16                                        development progresses be able to extract most of them.
17
18set prog                        ${name}-${version}.tgz
19
20homepage                        http://nrg4iso.googlecode.com
21master_sites            http://nrg4iso.googlecode.com/files
22
23distfiles                       ${prog}
24
25checksums                       md5             e865f0cfe587032dee852bdc6739a27d \
26                                        sha1    fa7f5c8794a5f3f12351954963bacdeaba37288a \
27                                        rmd160  0a5c44aaccb6fe666e2191948e76cfd9570cd862
28
29worksrcdir                      ${name}
30use_configure           no
31build.target            ${name}
32use_parallel_build      yes
33
34destroot {
35        xinstall -m 775                                 \
36                -W ${workpath}/${name}          \
37                 ${name}                                        \
38                ${destroot}${prefix}/bin
39}
40
41############################################################ {{{1 ###########
42# vim: set nowrap tabstop=4 shiftwidth=4 softtabstop=4 noexpandtab :
43# vim: set textwidth=0 filetype=tcl foldmethod=marker nospell :