Initial commit
This commit is contained in:
@@ -0,0 +1,33 @@
|
||||
SUMMARY = "A portable audio library"
|
||||
SECTION = "libs/multimedia"
|
||||
LICENSE = "MIT"
|
||||
LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=26107732c2ab637c5710446fcfaf02df"
|
||||
|
||||
PV = "v190700"
|
||||
|
||||
SRC_URI = " \
|
||||
git://github.com/PortAudio/portaudio.git;branch=master;protocol=https \
|
||||
file://0001-Find-jack.patch \
|
||||
file://0001-cmake-Use-GNUInstallDirs.patch \
|
||||
"
|
||||
SRCREV = "147dd722548358763a8b649b3e4b41dfffbcfbb6"
|
||||
S = "${WORKDIR}/git"
|
||||
|
||||
inherit cmake pkgconfig
|
||||
|
||||
PACKAGECONFIG ??= "alsa jack"
|
||||
PACKAGECONFIG[alsa] = ",,alsa-lib"
|
||||
PACKAGECONFIG[jack] = ",,jack"
|
||||
PACKAGECONFIG[examples] = "-DPA_BUILD_EXAMPLES=ON,-DPA_BUILD_EXAMPLES=OFF"
|
||||
|
||||
do_install:append() {
|
||||
if [ -d ${B}/examples ]; then
|
||||
install -d ${D}${bindir}
|
||||
for example in ${B}/examples/pa*; do
|
||||
install -m755 $example ${D}${bindir}/
|
||||
done
|
||||
fi
|
||||
}
|
||||
|
||||
FILES_SOLIBSDEV = ""
|
||||
FILES:${PN} += "${libdir}/libportaudio.so"
|
||||
Reference in New Issue
Block a user