blob: 01419c6c05fba42cf7908adc4ec49ca5bf38a7ff (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
PR = "r0"
DESCRIPTION = "Generic library support script \
This is GNU libtool, a generic library support script. Libtool hides \
the complexity of generating special library types (such as shared \
libraries) behind a consistent interface."
SRC_URI = "${DEBIAN_MIRROR}/main/libt/libtool/libtool_${PV}.orig.tar.gz \
file://${FILESDIR}/debian.patch;patch=1 \
file://${FILESDIR}/libdir.patch;patch=1 \
file://${FILESDIR}/sedvar.patch;patch=1 \
file://${FILESDIR}/libtoolize-staging.patch;patch=1"
S = "${WORKDIR}/libtool-${PV}"
inherit autotools
EXTRA_OECONF = "--disable-ltdl-install"
do_configure_prepend () {
./bootstrap
}
|