Ticket #41730: Portfile

File Portfile, 1.8 KB (added by nigels.com@…, 10 years ago)

easytag 2.1.8 Portfile

Line 
1# -*- 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
2# $Id$
3
4PortSystem 1.0
5
6name            easytag
7version         2.1.8
8set branch      [join [lrange [split ${version} .] 0 1] .]
9categories      audio
10platforms       darwin
11maintainers     rmstonecipher openmaintainer
12homepage        http://easytag.sf.net/
13license         GPL-2+
14description     Tool for editing tags of audio files
15
16long_description    EasyTAG is an utility for viewing and editing tags \
17                for MP3, MP2, FLAC, Ogg Vorbis, MusePack, Monkey's \
18                audio files and MP4/AAC. \
19                Its simple and nice GTK2+ interface makes tagging easier \
20                under UNIX systems.
21
22distfiles       easytag-2.1.8.tar.xz
23
24master_sites    http://ftp.gnome.org/pub/GNOME/sources/easytag/2.1
25
26checksums           rmd160  0b8ef3689730b2ae4fbf8131dbd1328bbf1da8a0 \
27                    sha256  1a2f75c9a70aeb7a404dfaa96e0df0eaaa325df301c58f0f708d0da4c08e65a9
28
29use_xz           yes
30
31configure.cflags-append -Wno-format-nonliteral
32
33depends_lib      port:gtk2 \
34                 port:gettext \
35                 port:libvorbis \
36                 port:flac \
37                 port:mp4v2 \
38                 port:faad2 \
39                 port:id3lib \
40                 port:libid3tag \
41                 port:speex \
42                 port:wavpack
43
44depends_build    port:hicolor-icon-theme \
45                 port:pkgconfig
46
47post-destroot {  xinstall -d ${destroot}${prefix}/share/doc/${name}
48                 xinstall -m 644 -v -W ${worksrcpath} \
49                     COPYING README THANKS TODO NEWS HACKING \
50                     ${destroot}${prefix}/share/doc/${name}
51}
52
53livecheck.regex         "${name}-(\\d+(?:\\.\\d+)*)${extract.suffix}"