Ticket #29447: Portfile

File Portfile, 1.4 KB (added by tael67@…, 13 years ago)
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                dylibbundler
7version             0.3.1
8categories          devel
9platforms           darwin
10maintainers         gmail.com:tael67 openmaintainer
11
12description         dylibbundler is a small terminal utility for mac OS X that eases bundling dynamic libraries (.dylib) inside app bundles.
13
14
15long_description    dylibbundler is a small command-line programs that aims to make bundling .dylibs as easy as possible. It automatically determines which dylibs are needed by your program, copies these libraries inside the app bundle, and fixes both them and the executable to be ready for distribution... all this with a single command on the teminal! It will also work if your program uses plug-ins that have dependencies too.
16
17license             GPL
18
19homepage            http://macdylibbundler.sourceforge.net/
20master_sites        sourceforge:macdylibbundler/
21
22checksums           sha1    c3126a057b527f33f92f6c258715534c6e52ce26 \
23                    rmd160  2792088a4e605f7c8e362fb374ce1ca95c75a09c
24
25distfiles           ${name}${version}.zip
26use_zip             yes
27worksrcdir          dylibbundler
28
29
30use_configure       no
31build.target
32
33destroot {
34           copy ${worksrcpath}/dylibbundler ${destroot}${prefix}/bin/dylibbundler
35 }