blob: 0b688c6217b7d6b2cb045e5fd8a0b321b6ff751d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
require popt.inc
PR = "r1"
DEPENDS = "gettext virtual/libintl"
inherit autotools autotools_stage
SRC_URI = "\
http://rpm.org/releases/historical/rpm-4.1.x/popt-${PV}.tar.gz \
file://m4.patch;patch=1 \
file://intl.patch;patch=1 \
file://mkinstalldirs.patch;patch=1 \
"
do_configure() {
gnu-configize
aclocal
libtoolize --copy --force
automake --add-missing
autoreconf
oe_runconf
}
|