Ticket #18728: Portfile

File Portfile, 1017 bytes (added by sanchom (Sancho McCann), 15 years ago)

boost-gil-numeric: new port Portfile

Line 
1# $Id$
2
3PortSystem 1.0
4
5name                    boost-gil-numeric
6version                 1.0
7categories              devel
8maintainers             gmail.com:sanchom
9
10description             An algorithm extension to boost-gil.
11long_description        An algorithm extension to boost-gil which allows you \
12                        do re-sampling and convolution. The algorithm \
13                        extension is in a very early stage of \
14                        development. It is not documented and has not \
15                        been optimized for performance.
16homepage                http://opensource.adobe.com/wiki/display/gil/Downloads
17platforms               darwin
18master_sites            http://opensource.adobe.com/wiki/download/attachments/3866769/
19distfiles               numeric.tar.gz
20checksums               md5 33d987e101f03ada8252f0df76dc790c \
21                        sha1 0195704f1309001ddf3f62b50adf22eef977eb69 \
22                        rmd160 14fdd24558520a64cbb0978ad61e3664d3feeda1
23depends_lib             port:boost
24
25use_configure           no
26worksrcdir              numeric
27
28build { }
29
30destroot {
31         set extensiondir       ${destroot}${prefix}/include/boost/gil/extension/numeric
32         xinstall -d -m 755 ${extensiondir}
33         eval xinstall -m 644 [glob ${worksrcpath}/*] ${extensiondir}
34}