blob: 8b9c1aa76f7908160379c4b262f5d13d5a53cc74 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
DESCRIPTION = "Python Orbit bindings"
LICENSE = "LGPL"
PR = "r0"
inherit gnome distutils-base pkgconfig
do_configure() {
export HOST_SYS=${HOST_SYS}
export BUILD_SYS=${BUILD_SYS}
autotools_do_configure
}
do_stage() {
install -d ${STAGING_INCDIR}/pyorbit-2
install -m 0644 src/pyorbit.h ${STAGING_INCDIR}/pyorbit-2
}
|