mirror of
https://git.yoctoproject.org/poky
synced 2026-02-28 12:29:40 +01:00
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@4403 311d38ba-8fff-0310-9ca6-ca027cbcb966
25 lines
711 B
BlitzBasic
25 lines
711 B
BlitzBasic
require libtool.inc
|
|
|
|
PR = "r10"
|
|
|
|
SRC_URI = "${GNU_MIRROR}/libtool/libtool-${PV}.tar.gz \
|
|
file://fix_static.patch;patch=1;status=merged \
|
|
file://Use-AC_CHECK_TOOL-for-otool-and-otool64.patch;patch=1;status=merged \
|
|
file://dolt.m4"
|
|
S = "${WORKDIR}/libtool-${PV}"
|
|
|
|
PACKAGES =+ "libltdl libltdl-dev libltdl-dbg"
|
|
FILES_${PN} += "${datadir}/aclocal*"
|
|
FILES_libltdl = "${libdir}/libltdl.so.*"
|
|
FILES_libltdl-dev = "${libdir}/libltdl.* ${includedir}/ltdl.h"
|
|
FILES_libltdl-dbg = "${libdir}/.debug/"
|
|
|
|
inherit autotools
|
|
|
|
EXTRA_AUTORECONF = "--exclude=libtoolize"
|
|
|
|
do_stage () {
|
|
oe_libinstall -a -so -C libltdl libltdl ${STAGING_LIBDIR}
|
|
install -m 0644 libltdl/ltdl.h ${STAGING_INCDIR}/
|
|
}
|