aboutsummaryrefslogtreecommitdiffstats
path: root/portaudio/portaudio_0.0.19.oe
blob: 4c4467fc4ee98c25e9d36f72c19d1bff60454f98 (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 = "A portable audio library"
SECTION = "libs"
PRIORITY = "optional"
MAINTAINER = "Michael Lauer <mickey@Vanille.de>"
DEPENDS = "virtual/libc"

SRC_URI = "http://www.portaudio.com/archives/pa_snapshot_v19.tar.gz \
	   file://${FILESDIR}/flags.patch;patch=1"
S = "${WORKDIR}/portaudio"

inherit autotools libtool pkgconfig

EXTRA_OECONF = "--with-jack=no"

do_stage() {
	oe_soinstall lib/libportaudio.so.${PV} ${STAGING_LIBDIR}/
        install -m 0644 pa_common/portaudio.h ${STAGING_INCDIR}/portaudio.h
}

do_install() {
	install -d ${D}${libdir}
	install -d ${D}${includedir}
	oe_runmake 'PREFIX=${D}${prefix}' install
}