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 | |
---|
4 | PortSystem 1.0 |
---|
5 | |
---|
6 | name mp3fs |
---|
7 | version 0.13 |
---|
8 | categories fuse |
---|
9 | platforms darwin |
---|
10 | |
---|
11 | maintainers uwe-arzt.de:mail |
---|
12 | |
---|
13 | description A flac to mp3 (read-only) filesystem for FUSE |
---|
14 | long_description This is a file system for converting flac files \ |
---|
15 | to mp3 files on the fly. This is useful, if you \ |
---|
16 | archive your music in flac format, but some \ |
---|
17 | program (i.e. iTunes) are not capable reading \ |
---|
18 | flac, but mp3. |
---|
19 | |
---|
20 | homepage http://mp3fs.sourceforge.net/ |
---|
21 | |
---|
22 | master_sites sourceforge:mp3fs |
---|
23 | checksums ${distfiles} md5 fb9b5eb4fb6f69f35430ff7e93a84e0b \ |
---|
24 | sha1 b246bd747a32256cb8364b7ac0cc8b7a4e1d3f74 |
---|
25 | |
---|
26 | depends_build port:pkgconfig |
---|
27 | |
---|
28 | depends_lib port:macfuse \ |
---|
29 | port:flac \ |
---|
30 | port:lame \ |
---|
31 | port:libid3tag |
---|
32 | |
---|
33 | |
---|
34 | configure.post_args-append "id3tag_CFLAGS=-I${prefix}/include id3tag_LIBS='-L${prefix}/lib /opt/local/lib/libid3tag.dylib'" |
---|
35 | |
---|
36 | patchfiles patch-mp3fs.diff |
---|
37 | # override patch.pre_args since it defaults to -p0 |
---|
38 | patch.pre_args -R -p1 |
---|