Ticket #48255: Portfile

File Portfile, 1.4 KB (added by ian.rees@…, 9 years ago)
Line 
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
5PortSystem      1.0
6PortGroup       github 1.0
7PortGroup       cmake 1.0
8
9github.setup    orocos orocos_kinematics_dynamics 1.3.0
10name            orocos-kdl
11
12categories      devel
13maintainers     gmail.com:ian.rees\
14                openmaintainer
15description     Orocos Kinematics and Dynamics
16license         LGPL-2.1
17
18long_description \
19    The Kinematics and Dynamics Library (KDL) develops an application \
20    independent framework for modelling and computation of kinematic chains, \
21    such as robots, biomechanical human models, computer-animated figures, \
22    machine tools, etc. It provides class libraries for geometrical objects \
23    (point, frame, line, ...), kinematic chains of various families (serial, \
24    humanoid, parallel, mobile, ...), and their motion specification and \
25    interpolation.
26
27homepage        http://www.orocos.org/kdl
28platforms       darwin
29
30checksums           rmd160  f9b0fd11bc9220068c39f9e73b4aa4b627c4af11 \
31                    sha256  89c6770fb944caac574b861914edbe5d40237d74d8bc341683b6c54ed3fbb32a
32
33cmake.out_of_source yes
34configure.post_args ${worksrcpath}/orocos_kdl
35
36depends_build-append \
37    port:pkgconfig
38depends_lib \
39    port:eigen
40
41configure.args-append \
42    -DCMAKE_INSTALL_NAME_DIR=${prefix}/lib \
43    -DOROCOS_INSTALL=${prefix}
44