Ticket #11477: Portfile

File Portfile, 1.2 KB (added by shadow@…, 17 years ago)

ale Portfile

Line 
1# $Id: Portfile 20308 2006-11-01 21:23:28Z blair@macports.org $
2
3PortSystem              1.0
4name                    ale
5version                 0.8.7
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
22extract.only            ale-${version}.tar.gz
23worksrcdir              ale-${version}
24checksums               ale-${version}.tar.gz md5 d9e9aaf7896cfa74e8d75159e1ee2817
25
26depends_lib             lib:Magick:ImageMagick
27
28destroot        {
29        xinstall -m 755 -d ${destroot}${prefix}/bin
30        xinstall -s -m 755 ${worksrcpath}/ale ${destroot}${prefix}/bin/
31        xinstall -m 755 -d ${destroot}${prefix}/share/doc/${name}
32        xinstall -m 644 -W ${worksrcpath} Changelog COPYING README \
33                ${destroot}${prefix}/share/doc/${name}
34}