blob: 5d145273419a38d5f3b6bfd6e3d44f1e72a1f4cf (
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
|
require dpkg.inc
inherit native
DEPENDS = "bzip2-native zlib-native virtual/update-alternatives-native"
SRC_URI += "file://noman.patch;patch=1"
FILESPATH += "dpkg-${PV}"
PERL_LIBDIR = "${STAGING_LIBDIR}/perl"
EXTRA_OECONF = "--without-static-progs \
--without-dselect \
--with-start-stop-daemon \
--with-zlib \
--with-bz2lib \
--without-selinux \
--without-sgml-doc"
do_stage_append() {
for BIN in dpkg-architecture; do
sed -i -e '1s,^#.*usr/bin,#!${STAGING_BINDIR},' ${STAGING_BINDIR}/$BIN
done
}
|