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 | |
---|
4 | PortSystem 1.0 |
---|
5 | |
---|
6 | name ann |
---|
7 | version 1.1.1 |
---|
8 | categories devel |
---|
9 | maintainers heidrich |
---|
10 | description Approximate Nearest Neighbor library |
---|
11 | long_description ANN is a library to find approximate nearest neighbors from a sample set |
---|
12 | homepage http://www.cs.umd.edu/~mount/ANN/ |
---|
13 | platforms darwin |
---|
14 | master_sites http://www.cs.umd.edu/~mount/ANN/Files/1.1.1 |
---|
15 | distfiles ann_1.1.1.tar.gz |
---|
16 | worksrcdir ${name}_${version} |
---|
17 | |
---|
18 | checksums md5 b6247e4a34e8a5e122ebf299cd51f871 \ |
---|
19 | sha1 3f4ac40d6cd3733c3a63b959ca505decd10a833d \ |
---|
20 | rmd160 5b5df4713583cf4fadc6636a76e73a33403f8f16 |
---|
21 | |
---|
22 | configure {} |
---|
23 | |
---|
24 | build.target macosx-g++ |
---|
25 | |
---|
26 | destroot { |
---|
27 | file copy ${worksrcpath}/lib/libANN.a ${destroot}${prefix}/lib/ |
---|
28 | foreach f [glob ${worksrcpath}/include/*] { |
---|
29 | file copy $f ${destroot}${prefix}/include/ |
---|
30 | } |
---|
31 | foreach f [glob ${worksrcpath}/bin/*] { |
---|
32 | file copy $f ${destroot}${prefix}/bin/ |
---|
33 | } |
---|
34 | } |
---|