blob: 46d599a3cb5d3ef5180f4b598ca696efc0cacb77 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
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;apply=yes \
file://intl.patch;apply=yes \
file://mkinstalldirs.patch;apply=yes \
"
do_configure() {
gnu-configize
aclocal
libtoolize --copy --force
automake --add-missing
autoreconf
oe_runconf
}
SRC_URI[md5sum] = "5988e7aeb0ae4dac8d83561265984cc9"
SRC_URI[sha256sum] = "4e75cb28793f0d44134f71fae53057d5f250805e6268fbd9c9780654b73b0dc1"
|