diff options
Diffstat (limited to 'meta/recipes-devtools/opkg/opkg.inc')
-rw-r--r-- | meta/recipes-devtools/opkg/opkg.inc | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/meta/recipes-devtools/opkg/opkg.inc b/meta/recipes-devtools/opkg/opkg.inc new file mode 100644 index 0000000000..add1563c47 --- /dev/null +++ b/meta/recipes-devtools/opkg/opkg.inc | |||
@@ -0,0 +1,33 @@ | |||
1 | DESCRIPTION = "Open Package Manager" | ||
2 | DESCRIPTION_libopkg = "Open Package Manager Library" | ||
3 | DESCRIPTION_update-alternatives-cworth = "Update alternatives" | ||
4 | SECTION = "base" | ||
5 | HOMEPAGE = "http://code.google.com/p/opkg/" | ||
6 | BUGTRACKER = "http://code.google.com/p/opkg/issues/list" | ||
7 | LICENSE = "GPLv2+" | ||
8 | LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f \ | ||
9 | file://src/opkg-cl.c;beginline=1;endline=20;md5=321f658c3f6b6c832e25c8850b5dffba" | ||
10 | DEPENDS = "curl gpgme openssl" | ||
11 | DEPENDS_virtclass-native = "curl-native" | ||
12 | DEPENDS_virtclass-nativesdk = "curl-nativesdk" | ||
13 | |||
14 | PE = "1" | ||
15 | |||
16 | FILESDIR = "${@os.path.dirname(bb.data.getVar('FILE',d,1))}/opkg" | ||
17 | |||
18 | # Werror gives all kinds bounds issuses with gcc 4.3.3 | ||
19 | do_configure_prepend() { | ||
20 | sed -i -e s:-Werror::g ${S}/libopkg/Makefile.am | ||
21 | } | ||
22 | |||
23 | inherit autotools pkgconfig | ||
24 | |||
25 | target_localstatedir := "${localstatedir}" | ||
26 | EXTRA_OECONF = "--with-opkglibdir=${localstatedir}/lib" | ||
27 | EXTRA_OECONF_virtclass-native = "--with-opkglibdir=${target_localstatedir}/lib --disable-gpg --disable-curl --disable-openssl" | ||
28 | EXTRA_OECONF_virtclass-nativesdk = "--with-opkglibdir=${target_localstatedir}/lib --disable-gpg --disable-curl --disable-openssl" | ||
29 | |||
30 | #PROVIDES_append_virtclass-native = "virtual/update-alternatives-native" | ||
31 | #RPROVIDES_${PN} += "update-alternatives-native" | ||
32 | |||
33 | BBCLASSEXTEND = "native nativesdk" | ||