Ticket #29917: Portfile.2

File Portfile.2, 1.4 KB (added by anatol (Anatol Pomozov), 13 years ago)

fuse4x objc

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                fuse4x-framework
7version             0.8.6
8revision            1
9categories          fuse devel
10platforms           macosx
11maintainers         dports
12description         Objective-C framework for Fuse4X
13
14long_description    Fuse4X implements a mechanism that makes it possible to  \
15                    implement a fully functional file system in a user-space  \
16                    program on Mac OS X. It aims to be API-compliant with     \
17                    the FUSE (File-system in USErspace) mechanism that        \
18                    originated on Linux.  Therefore, many existing FUSE file  \
19                    systems become readily usable on Mac OS X. The core of    \
20                    Fuse4X is in a dynamically loadable kernel extension.
21
22homepage            http://fuse4x.org/
23license             BSD
24fetch.type          git
25git.url             git://github.com/fuse4x/framework.git
26git.branch          fuse4x_0_8_6
27
28depends_lib         port:fuse4x
29use_configure       no
30build.cmd           xcodebuild
31build.target        build
32build.args          -configuration Release
33
34destroot.violate_mtree yes
35
36post-destroot {
37    xinstall -d ${destroot}/Library/Frameworks/
38    file copy ${worksrcpath}/build/Release/Fuse4X.framework ${destroot}/Library/Frameworks
39}