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 | |
---|
4 | PortSystem 1.0 |
---|
5 | |
---|
6 | name makeicns |
---|
7 | version 1.3 |
---|
8 | |
---|
9 | categories graphics |
---|
10 | maintainers techno.ms:mk-macports pixilla.com:brad |
---|
11 | platforms darwin |
---|
12 | |
---|
13 | license MIT |
---|
14 | |
---|
15 | description This program lets you convert all kinds of images to Apple's icns format on the command line. |
---|
16 | long_description ${description} |
---|
17 | |
---|
18 | homepage http://bitbucket.org/mkae/makeicns |
---|
19 | master_sites http://bitbucket.org/mkae/makeicns/get |
---|
20 | |
---|
21 | use_bzip2 yes |
---|
22 | extract.suffix .bz2 |
---|
23 | |
---|
24 | distname ${name} |
---|
25 | distfiles ${version}.tar${extract.suffix} |
---|
26 | |
---|
27 | checksums md5 bcf46a25d5c09faff4c648d36e800ec5 \ |
---|
28 | sha1 d3c5b9c41737144b2e2488b3b81d27b6192b3700 \ |
---|
29 | rmd160 8cf48c3095652082d5e7f82d5f2217d3168dae73 |
---|
30 | |
---|
31 | use_configure no |
---|
32 | |
---|
33 | build.target {} |
---|
34 | |
---|
35 | destroot {} |
---|
36 | |
---|
37 | post-destroot { |
---|
38 | xinstall -m 755 ${worksrcpath}/${name} \ |
---|
39 | ${destroot}${prefix}/bin/${name} |
---|
40 | } |
---|