forked from derphilipp/macportsscripts
-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add macports Portfile to repo, add .gitignore file
- Loading branch information
System Administrator
committed
Jan 29, 2013
1 parent
5e64b47
commit fc2c0d5
Showing
2 changed files
with
25 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
.DS_Store |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# $Id: Portfile 78632 2011-05-14 22:50:58Z [email protected] $ | ||
|
||
PortSystem 1.0 | ||
|
||
name macportsscripts | ||
version dev | ||
platforms darwin | ||
categories sysutils | ||
maintainers phw openmaintainer | ||
description Various scripts to work with macports | ||
|
||
homepage http://yum.baseurl.org/ | ||
fetch.type git | ||
git.url git://github.com/derphilipp/macportsscripts.git | ||
|
||
use_configure no | ||
build {} | ||
|
||
destroot { | ||
xinstall -d -m 755 ${destroot}${prefix}/bin | ||
eval xinstall -m 755 [glob ${worksrcpath}/*] ${destroot}${prefix}/bin | ||
} | ||
|
||
livecheck.type none |