blob: 3851c5687d9c337f4f2221a8623ebad093f8f170 (
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
|
DESCRIPTION = "libnl is a library for applications dealing with netlink sockets"
SECTION = "libs/network"
LICENSE = "LGPL"
HOMEPAGE = "http://people.suug.ch/~tgr/libnl/"
MAINTAINER = "Milan Plzik <mmp@handhelds.org>"
PRIORITY = "optional"
DEPENDS = "glibc"
inherit autotools pkgconfig gpe
SRC_URI= "http://people.suug.ch/~tgr/libnl/files/${P}.tar.gz \
file://local-includes.patch;patch=1"
do_install() {
oe_runmake prefix=${prefix} DESTDIR=${D} install
}
do_stage () {
autotools_stage_all prefix=${prefix}
}
do_install () {
oe_runmake prefix=${prefix} DESTDIR=${D} install
}
|