forked from derphilipp/macportsscripts
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Portfile
32 lines (24 loc) · 1006 Bytes
/
Portfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# -*- 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
# $Id: Portfile 78632 2011-05-14 22:50:58Z [email protected] $
PortSystem 1.0
PortGroup github 1.0
epoch 2
github.setup cooljeanius macportsscripts 0.3.0 v
categories sysutils macports
platforms darwin
maintainers phw gwmail.gwu.edu:egall openmaintainer
license BSD
supported_archs noarch
description Various scripts to work with MacPorts
long_description ${description}
fetch.type git
git.url git://github.com/cooljeanius/${name}.git
use_configure no
build {}
destroot {
eval xinstall -m 755 [glob ${worksrcpath}/*.sh] ${destroot}${prefix}/bin
eval xinstall -m 755 [glob ${worksrcpath}/*.pl] ${destroot}${prefix}/bin
xinstall -d ${destroot}${prefix}/share/doc/${name}
eval xinstall -m 644 [glob ${worksrcpath}/*.md] ${destroot}${prefix}/share/doc/${name}
}
livecheck.type none