# Inherit this bbclass for each java recipe that builds a Java library (jar file[s]). # # It automatically adds important build dependencies, defines JPN (Java Package Name) # a package named ${JPN} whose contents are those of ${datadir}/java (the jar location). # # The JPN is basically lib${PN}-java but takes care of the fact that ${PN} already # starts with "lib" and/or ends with "-java". In case the "lib" prefix is part of # your package's normal name (e.g. liberator) the guessing is wrong and you have # to set JPN manually! inherit java def java_package_name(d): import bb; pre="" post="" pn = bb.data.getVar('PN', d, 1) if not pn.startswith("lib"): pre='lib' if not pn.endswith("-java"): post='-java' return pre + pn + post JPN ?= "${@java_package_name(d)}" DEPENDS_prepend = "virtual/javac-native fastjar-native " PACKAGES = "${JPN}" PACKAGE_ARCH_${JPN} = "all" FILES_${JPN} = "${datadir_java}" n> Multi-Tech CoreCDP 1.x OpenEmbedded TreeMulti-Tech Systems
summaryrefslogtreecommitdiff
path: root/packages/perl/libparams-util-perl_0.20.bb
opie-stumbler?id=64b1f520c6f672231cb877cf74e9db414c90b96a'>opie-stumbler: new application for scanning WiFi networks
AgeCommit message (Expand)AuthorFiles
2007-05-30perl 5.8.8: Bump PR on modules to force the -native versions to be rebuiltJamie Lenehan1
2007-05-08perl modules: Bump PR since the directories they install into have changedJamie Lenehan1
2007-05-02perl modules: Bump PR on cpan modules effected by the recentJamie Lenehan1
2006-10-10Remove MAINTAINER fields from recipes, add MAINTAINER file to replace them.Koen Kooi1
2006-10-04perl: Add a new set of perl modules related to testing.Jamie Lenehan1
Marcin Juszkiewicz6