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 dylibbundler |
---|
7 | version 0.3.1 |
---|
8 | categories devel |
---|
9 | platforms darwin |
---|
10 | maintainers gmail.com:tael67 openmaintainer |
---|
11 | |
---|
12 | description dylibbundler is a small terminal utility for mac OS X that eases bundling dynamic libraries (.dylib) inside app bundles. |
---|
13 | |
---|
14 | |
---|
15 | long_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 | |
---|
17 | license GPL |
---|
18 | |
---|
19 | homepage http://macdylibbundler.sourceforge.net/ |
---|
20 | master_sites sourceforge:macdylibbundler/ |
---|
21 | |
---|
22 | checksums sha1 c3126a057b527f33f92f6c258715534c6e52ce26 \ |
---|
23 | rmd160 2792088a4e605f7c8e362fb374ce1ca95c75a09c |
---|
24 | |
---|
25 | distfiles ${name}${version}.zip |
---|
26 | use_zip yes |
---|
27 | worksrcdir dylibbundler |
---|
28 | |
---|
29 | |
---|
30 | use_configure no |
---|
31 | build.target |
---|
32 | |
---|
33 | destroot { |
---|
34 | copy ${worksrcpath}/dylibbundler ${destroot}${prefix}/bin/dylibbundler |
---|
35 | } |
---|