Ticket #2504: ale-Portfile

File ale-Portfile, 1.2 KB (added by shadow@…, 19 years ago)

Portfile for ale 0.7.3

Line 
1# $Id: Portfile,v 1.1 2004/10/16 12:58:54 olegb Exp $
2
3PortSystem              1.0
4name                    ale
5version                 0.7.3
6
7description             antilamenessing engine
8long_description        ALE is a free software program that renders \
9                        high-fidelity images of real scenes by aligning \
10                        and combining many similar images from a camera \
11                        or scanner. The correct similarity between images \
12                        is roughly that achieved by a somewhat unsteady \
13                        hand holding a camera.
14homepage                http://auricle.dyndns.org/ALE/
15platforms               darwin
16categories              graphics
17maintainers             shadow@dementia.org
18master_sites            http://auricle.dyndns.org/ALE/download/:ale \
19                        http://auricle.dyndns.org/ALE/bugs/:alepatch
20distfiles               ale-${version}.tar.gz:ale
21
22configure               {}
23extract.only            ale-${version}.tar.gz
24worksrcdir              ale-${version}
25checksums               ale-${version}.tar.gz md5 d1dc3a83ec2beec1c129f3a059819f58
26
27depends_lib             lib:Magick:ImageMagick
28
29build.args              IMAGEMAGICK=1
30
31destroot        {
32        xinstall -m 755 -d ${destroot}${prefix}/bin
33        xinstall -s -m 755 ${worksrcpath}/ale ${destroot}${prefix}/bin/
34        xinstall -m 755 -d ${destroot}${prefix}/share/doc/${name}
35        xinstall -m 644 -W ${worksrcpath} Changelog COPYING README \
36                ${destroot}${prefix}/share/doc/${name}
37}