blob: 32daf650bdde55d5e4cf5ed6a3ed4231c344f497 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
SECTION = "console/utils"
DESCRIPTION = "Not an MP3 encoder"
LICENSE = "LGPL"
SRC_URI = "${SOURCEFORGE_MIRROR}/lame/lame-${PV}.tar.gz \
file://no-gtk1.patch;patch=1"
inherit autotools
do_configure() {
# no autoreconf please
aclocal
autoconf
libtoolize --force
oe_runconf
}
do_stage() {
install -d ${STAGING_LIBDIR}
oe_libinstall -C libmp3lame -so -a libmp3lame ${STAGING_LIBDIR}
install -d ${STAGING_INCDIR}/lame
install -m 0644 include/lame.h ${STAGING_INCDIR}/lame/
}
|