summaryrefslogtreecommitdiffstats
path: root/meta/packages/pkgconfig/pkgconfig_0.22.bb
diff options
context:
space:
mode:
Diffstat (limited to 'meta/packages/pkgconfig/pkgconfig_0.22.bb')
-rw-r--r--meta/packages/pkgconfig/pkgconfig_0.22.bb27
1 files changed, 27 insertions, 0 deletions
diff --git a/meta/packages/pkgconfig/pkgconfig_0.22.bb b/meta/packages/pkgconfig/pkgconfig_0.22.bb
new file mode 100644
index 0000000000..28cf2c53f8
--- /dev/null
+++ b/meta/packages/pkgconfig/pkgconfig_0.22.bb
@@ -0,0 +1,27 @@
1SECTION = "console/utils"
2DESCRIPTION = "pkg-config is a system for managing library \
3compile/link flags that works with automake and autoconf. \
4It replaces the ubiquitous *-config scripts you may have \
5seen with a single tool."
6HOMEPAGE = "http://pkg-config.freedesktop.org/wiki/"
7LICENSE = "GPL"
8
9SRC_URI = "http://pkgconfig.freedesktop.org/releases/pkg-config-${PV}.tar.gz \
10 file://glibconfig-sysdefs.h"
11
12S = "${WORKDIR}/pkg-config-${PV}/"
13
14inherit autotools
15
16acpaths = "-I ."
17do_configure () {
18 install -m 0644 ${WORKDIR}/glibconfig-sysdefs.h glib-1.2.8/
19 gnu-configize
20 libtoolize --force
21 oe_runconf
22}
23
24do_stage_prepend() {
25 install -d -m 0755 ${STAGING_DATADIR}/pkgconfig
26
27}