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 | |
---|
4 | PortSystem 1.0 |
---|
5 | |
---|
6 | name nrg4iso |
---|
7 | version 1.0.1 |
---|
8 | revision 1 |
---|
9 | platforms darwin |
---|
10 | categories emulators |
---|
11 | maintainers krischik@me.com |
---|
12 | description nrg4iso extracts data from a Nero Burning ROM image file (.nrg). |
---|
13 | long_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 | |
---|
18 | set prog ${name}-${version}.tgz |
---|
19 | |
---|
20 | homepage http://nrg4iso.googlecode.com |
---|
21 | master_sites http://nrg4iso.googlecode.com/files |
---|
22 | |
---|
23 | distfiles ${prog} |
---|
24 | |
---|
25 | checksums md5 e865f0cfe587032dee852bdc6739a27d \ |
---|
26 | sha1 fa7f5c8794a5f3f12351954963bacdeaba37288a \ |
---|
27 | rmd160 0a5c44aaccb6fe666e2191948e76cfd9570cd862 |
---|
28 | |
---|
29 | worksrcdir ${name} |
---|
30 | use_configure no |
---|
31 | build.target ${name} |
---|
32 | use_parallel_build yes |
---|
33 | |
---|
34 | destroot { |
---|
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 : |
---|