|
Revision 40544, 1.2 KB
(checked in by jmr@…, 3 months ago)
|
|
a52decX: don't use cd, and respect applications_dir
|
-
Property svn:eol-style set to
native
-
Property svn:keywords set to
Id
|
| Line | |
|---|
| 1 | # $Id$ |
|---|
| 2 | |
|---|
| 3 | PortSystem 1.0 |
|---|
| 4 | PortGroup xcode 1.0 |
|---|
| 5 | |
|---|
| 6 | name a52decX |
|---|
| 7 | version 0.25 |
|---|
| 8 | revision 1 |
|---|
| 9 | categories aqua multimedia |
|---|
| 10 | maintainers nomaintainer |
|---|
| 11 | homepage http://homepage1.nifty.com/~toku/software_en.html#a52decX |
|---|
| 12 | description Converts AC-3 file to an AIFF file |
|---|
| 13 | |
|---|
| 14 | long_description \ |
|---|
| 15 | a52decX converts an AC-3 file being used for the sound of \ |
|---|
| 16 | DVD-Video into an AIFF file. |
|---|
| 17 | |
|---|
| 18 | master_sites http://homepage1.nifty.com/~toku/software/ |
|---|
| 19 | |
|---|
| 20 | checksums md5 7760780873de9b9c4d13e7d396f31b54 \ |
|---|
| 21 | sha1 329aa192645ddf81214c191a35c680cce7a61dc3 \ |
|---|
| 22 | rmd160 3e8f1b8a958b444aa0f9a8d298ddf0091c926bdc |
|---|
| 23 | |
|---|
| 24 | depends_run port:a52dec \ |
|---|
| 25 | port:lame |
|---|
| 26 | |
|---|
| 27 | patchfiles patch-a52decX.pbproj-project.pbxproj |
|---|
| 28 | |
|---|
| 29 | if {![info exists applications_dir]} { |
|---|
| 30 | set applications_dir /Applications/MacPorts |
|---|
| 31 | } |
|---|
| 32 | post-destroot { |
|---|
| 33 | set resdir ${destroot}${applications_dir}/${name}.app/Contents/Resources |
|---|
| 34 | foreach {exe} {a52dec lame} { |
|---|
| 35 | ln -s ${prefix}/bin/${exe} ${resdir} |
|---|
| 36 | } |
|---|
| 37 | } |
|---|
| 38 | |
|---|
| 39 | universal_variant no |
|---|
| 40 | |
|---|
| 41 | livecheck.check regex |
|---|
| 42 | livecheck.url [strsed ${homepage} {/#.*//}] |
|---|
| 43 | livecheck.regex "${name} (\\d+(?:\\.\\d+)*)" |
|---|