blob: a230f29f6672d0b7230abfae46e037196d0df587 (
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
27
|
require dpkg.inc
inherit native
DEPENDS = "perl-native bzip2-native zlib-native virtual/update-alternatives-native"
RDEPENDS_${PN} = ""
SRC_URI += "file://noman.patch"
# We need to do this so our perl is picked up.
do_configure_prepend() {
export PERL=${STAGING_BINDIR}/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
}
|