blob: 303c286d4e7bbc55edadf546a901978338721277 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
DESCRIPTION = "GNU Classpath standard Java libraries"
HOMEPAGE = "http://www.gnu.org/software/classpath/"
LICENSE = "Classpath"
PRIORITY = "optional"
SECTION = "libs"
PBN = "classpath"
SRC_URI = "${GNU_MIRROR}/classpath/${PBN}-${PV}.tar.gz \
file://disable-automake-checks.patch;patch=1 \
file://fix-endian-arm-floats.patch;patch=1"
S = "${WORKDIR}/${PBN}-${PV}"
inherit autotools
do_stage() {
install -d ${STAGING_INCDIR}/classpath
install -m 0755 include/jni* ${STAGING_INCDIR}/classpath/
}
do_install() {
autotools_do_install
mv ${D}${libdir}/security ${D}${libdir}/${PBN}
}
PROVIDES = "classpath"
RPROVIDES = "classpath"
|