blob: 1855efcf0a467e15203f8962810ae6c86f495aaa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
LICENSE = GPL
DESCRIPTION = "An audio Sample Rate Conversion library"
SECTION = "libs"
PRIORITY = "optional"
inherit autotools pkgconfig
SRC_URI = "http://www.mega-nerd.com/SRC/libsamplerate-${PV}.tar.gz"
S="${WORKDIR}/libsamplerate-${PV}"
PACKAGES = "${PN}"
FILES_${PN} = " ${libdir}/libsamplerate.so.0 ${libdir}/libsamplerate.so.0.1.1 "
do_stage() {
oe_libinstall -a -so -C src libsamplerate ${STAGING_LIBDIR}
install -m 0644 ${S}/src/samplerate.h ${STAGING_INCDIR}/
}
|