Ticket #37797: Portfile

File Portfile, 898 bytes (added by cooljeanius (Eric Gallager), 11 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$
3
4PortSystem          1.0
5
6name                portfile-gen
7version             0.2
8categories          sysutils
9maintainers         ryandesign gwmail.gwu.edu:egall openmaintainer
10platforms           darwin
11license             BSD
12supported_archs     noarch
13
14description         Generate a basic template Portfile given a few bits of information
15long_description    ${description}
16homepage            http://svn.macports.org/repository/macports/contrib/portfile-gen
17
18livecheck.type      none
19
20fetch.type          svn
21svn.url             https://svn.macports.org/repository/macports/contrib/portfile-gen
22svn.revision        102094
23
24use_configure       no
25
26build {}
27
28destroot {
29    xinstall -m 755 ${workpath}/${name}/${name} ${destroot}${prefix}/bin/${name}
30}
31