Ticket #2699: Portfile

File Portfile, 646 bytes (added by brent@…, 19 years ago)

Portfile

Line 
1# $Id$
2
3PortSystem 1.0
4name            id3v2
5version         0.1.11
6categories      audio
7maintainers     brent@nordist.net
8description     ID3v2 editing tool
9long_description "A command line editor for ID3v2 tags, based on id3lib. \
10                Written by Myers Carpenter."
11homepage        http://id3v2.sourceforge.net/
12platforms       darwin
13master_sites    sourceforge
14checksums       md5 68afc3827cf01501dfb22949f901f1d8
15depends_lib     lib:libid3.3:id3lib
16
17post-patch {
18        reinplace "s|/usr/local|${prefix}|g" "${worksrcpath}/Makefile" 
19}
20configure       {}
21destroot {
22        xinstall -m 755 ${worksrcpath}/id3v2 ${destroot}/${prefix}/sbin/
23        xinstall -m 644 ${worksrcpath}/id3v2.1 ${destroot}/${prefix}/share/man/man1/
24}