summaryrefslogtreecommitdiffstats
path: root/meta/packages/opkg/opkg.inc
blob: 1d1cb5c26f2196e5bb683b828b7d353959487a6b (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
29
30
31
32
33
34
35
DESCRIPTION = "Open Package Manager"
DESCRIPTION_libopkg = "Open Package Manager Library"
DESCRIPTION_update-alternatives-cworth = "Update alternatives"
SECTION = "base"
LICENSE = "GPL"
DEPENDS = "curl gpgme"
DEPENDS_virtclass-native = "curl-native"
DEPENDS_virtclass-nativesdk = "curl-nativesdk"
PV = "0.0+svnr${SRCREV}"
PE = "1"

SRC_URI = "svn://opkg.googlecode.com/svn;module=trunk;proto=http \
	file://opkg_unarchive.patch;patch=1;maxrev=201 \
	file://opkg-intercept-cleanup.patch;patch=1 \
	file://add_vercmp.patch;patch=1"

S = "${WORKDIR}/trunk"

FILESDIR = "${@os.path.dirname(bb.data.getVar('FILE',d,1))}/opkg"

# Werror gives all kinds bounds issuses with gcc 4.3.3
do_configure_prepend() {
    sed -i -e s:-Werror::g ${S}/libopkg/Makefile.am
}

inherit autotools_stage pkgconfig

target_libdir := "${libdir}"
EXTRA_OECONF_virtclass-native = "--with-opkglibdir=${target_libdir} --disable-gpg"
EXTRA_OECONF_virtclass-nativesdk = "--with-opkglibdir=${target_libdir} --disable-gpg"

#PROVIDES_append_virtclass-native = "virtual/update-alternatives-native"
#RPROVIDES_${PN} += "update-alternatives-native"

BBCLASSEXTEND = "native nativesdk"