blob: c5c550d0ec02113a774f8d853e3f26a7c0ec2dbc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
SECTION = "devel"
DEPENDS += "python-native"
PR = "r0"
SRC_URI = "http://downloads.sourceforge.net/omniorb/omniORB-4.1.4.tar.gz;name=omniORB414targz \
file://omniorb_4.1.4.patch \
"
SRC_URI[omniORB414targz.md5sum] = "1f6070ff9b6339876976d61981eeaa6a"
SRC_URI[omniORB414targz.sha256sum] = "84fb9790c25d6e46248c9773747e393b429573190da2150850d4a49debda4e8e"
S = "${WORKDIR}/omniORB-${PV}"
inherit native autotools
do_compile () {
oe_runmake
}
# Ugly hack so libtool does not find native libs when building cross packages
# We really only build this package for omniidl anyway
do_stage_append() {
rm -f ${STAGING_LIBDIR_NATIVE}/libomni*
}
|