Ticket #24812: Portfile

File Portfile, 1.1 KB (added by mkae (Marko Käning), 14 years ago)

Portfile for the new port makeicns

Line 
1# -*- coding: utf-8; mode: tcl; tab-width: 4; truncate-lines: t; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:et:sw=4:ts=4:sts=4
2# $Id$
3
4PortSystem          1.0
5
6name                makeicns
7version             1.3
8
9categories          graphics
10maintainers         techno.ms:mk-macports pixilla.com:brad
11platforms           darwin
12
13license             MIT
14
15description         This program lets you convert all kinds of images to Apple's icns format on the command line.
16long_description    ${description}
17
18homepage            http://bitbucket.org/mkae/makeicns
19master_sites        http://bitbucket.org/mkae/makeicns/get
20
21use_bzip2           yes
22extract.suffix      .bz2
23
24distname            ${name}
25distfiles           ${version}.tar${extract.suffix}
26
27checksums           md5     bcf46a25d5c09faff4c648d36e800ec5 \
28                    sha1    d3c5b9c41737144b2e2488b3b81d27b6192b3700 \
29                    rmd160  8cf48c3095652082d5e7f82d5f2217d3168dae73
30
31use_configure       no
32
33build.target        {}
34
35destroot            {}
36
37post-destroot {
38    xinstall -m 755 ${worksrcpath}/${name} \
39        ${destroot}${prefix}/bin/${name}
40}