Ticket #22132: Portfile.blb

File Portfile.blb, 1.7 KB (added by blb@…, 15 years ago)

Updated Portfile

Line 
1# $Id$
2
3PortSystem          1.0
4
5name                indi
6
7version             0.6
8
9categories          science
10
11maintainers         gmail.com:jtomshine
12
13description         distributed control protocol for astronomical instrumentation
14long_description    INDI is a distributed control protocol designed to \
15                    operate astronomical instrumentation. INDI is small, \
16                    flexible, easy to parse, and scalable. It supports common \
17                    DCS functions such as remote control, data acquisition, \
18                    monitoring, and a lot more.  With INDI, you have a total \
19                    transparent control over your instruments so you can get \
20                    more science with less time.
21                   
22homepage            http://www.indilib.org
23
24platforms           darwin
25
26distname            libindi0_${version}
27master_sites        sourceforge
28
29checksums           md5 49218ad15a40dfa8a2366a2694477595 \
30                    sha1 70b6a4cf4447874a0cf65dd8ece2d77dc397826d \
31                    rmd160 1ec9fd8daa04db458b80ab2e153a6025faa0406f
32                   
33depends_lib         port:libnova \
34                    port:zlib \
35                    port:libusb
36
37depends_build       port:cmake
38
39worksrcdir          libindi0-${version}
40
41configure.cmd      ${prefix}/bin/cmake
42configure.pre_args -DCMAKE_INSTALL_PREFIX=${prefix} \
43configure.args     -DWITH_CFITSIO=OFF \
44                   -DWITH_FLI=OFF \
45                   -DNOVA_INCLUDE_DIR=${prefix}/include/libnova \
46                   -DNOVA_LIBRARIES=${prefix}/lib/libnova.a \
47                   ${worksrcpath}
48destroot.env       CMAKE_INSTALL_PREFIX=${destroot}${prefix}
49