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 fuse4x-framework |
---|
7 | version 0.8.6 |
---|
8 | revision 1 |
---|
9 | categories fuse devel |
---|
10 | platforms macosx |
---|
11 | maintainers dports |
---|
12 | description Objective-C framework for Fuse4X |
---|
13 | |
---|
14 | long_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 | |
---|
22 | homepage http://fuse4x.org/ |
---|
23 | license BSD |
---|
24 | fetch.type git |
---|
25 | git.url git://github.com/fuse4x/framework.git |
---|
26 | git.branch fuse4x_0_8_6 |
---|
27 | |
---|
28 | depends_lib port:fuse4x |
---|
29 | use_configure no |
---|
30 | build.cmd xcodebuild |
---|
31 | build.target build |
---|
32 | build.args -configuration Release |
---|
33 | |
---|
34 | destroot.violate_mtree yes |
---|
35 | |
---|
36 | post-destroot { |
---|
37 | xinstall -d ${destroot}/Library/Frameworks/ |
---|
38 | file copy ${worksrcpath}/build/Release/Fuse4X.framework ${destroot}/Library/Frameworks |
---|
39 | } |
---|