Ticket #22970: Portfile

File Portfile, 1.3 KB (added by tim@…, 15 years ago)

portfile for weightwatcher

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               weightwatcher
7version            1.8.10
8revision           1
9categories         science
10platforms          darwin
11maintainers        saao.ac.za:tim
12
13description        WeightWatcher is a program that combines weight-maps, \
14    flag-maps and polygon data in order to produce control maps which can \
15    directly be used in astronomical image-processing packages like Swarp or \
16    SExtractor.
17
18homepage           http://www.astromatic.net/software/weightwatcher/
19platforms          darwin
20master_sites       ftp://ftp.iap.fr/pub/from_users/bertin/weightwatcher/
21checksums          md5  ed49878bee90aaa2a46588b4312046d5 \
22                   sha1  00c824fdc068299db04e48263558e1da223baeff \
23                   rmd160  530b81d4b40354f85eb21bcd62b473457033ce4d
24
25post-destroot {
26    set docdir ${destroot}${prefix}/share/doc/${name}-${version}
27    xinstall -m 755 -d ${docdir}
28    eval xinstall -m 644 ${worksrcpath}/README ${worksrcpath}/AUTHORS \
29        ${worksrcpath}/COPYRIGHT ${worksrcpath}/ChangeLog ${worksrcpath}/BUGS \
30        ${worksrcpath}/HISTORY ${worksrcpath}/INSTALL ${worksrcpath}/THANKS \
31        ${worksrcpath}/TODO [glob ${worksrcpath}/doc/*] ${docdir}
32}