Projects
New Ticket     Wiki     Browse Source     Timeline     Roadmap     Bug Reports     Search

root/trunk/dports/aqua/a52decX/Portfile

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
3PortSystem      1.0
4PortGroup       xcode 1.0
5
6name            a52decX
7version         0.25
8revision        1
9categories      aqua multimedia
10maintainers     nomaintainer
11homepage        http://homepage1.nifty.com/~toku/software_en.html#a52decX
12description     Converts AC-3 file to an AIFF file
13
14long_description \
15    a52decX converts an AC-3 file being used for the sound of \
16        DVD-Video into an AIFF file.
17
18master_sites    http://homepage1.nifty.com/~toku/software/
19
20checksums       md5 7760780873de9b9c4d13e7d396f31b54 \
21                sha1 329aa192645ddf81214c191a35c680cce7a61dc3 \
22                rmd160 3e8f1b8a958b444aa0f9a8d298ddf0091c926bdc
23
24depends_run     port:a52dec \
25                port:lame
26
27patchfiles      patch-a52decX.pbproj-project.pbxproj
28
29if {![info exists applications_dir]} {
30    set applications_dir /Applications/MacPorts
31}
32post-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
39universal_variant   no
40
41livecheck.check regex
42livecheck.url   [strsed ${homepage} {/#.*//}]
43livecheck.regex "${name} (\\d+(?:\\.\\d+)*)"
Note: See TracBrowser for help on using the browser.