aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/perl/libdevice-serialport-perl_1.04.bb
blob: 8f4b0a657f70cd443a5b8673cc2fbdb19b8ccdfc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
SECTION = "libs"
LICENSE = "GPL"
RDEPENDS += "perl-module-carp perl-module-posix perl-module-io-handle \
	     perl-module-strict perl-module-warnings perl-module-vars \
	     perl-module-xsloader"

SRC_URI = "http://www.cpan.org/modules/by-module/Device/Device-SerialPort-${PV}.tar.gz"

S = "${WORKDIR}/Device-SerialPort-${PV}"

inherit cpan

# inspired by autotools.bbclass
do_configure_prepend () {
	oenote Executing autoreconf --verbose --install --force
	mkdir -p m4
	autoreconf -Wcross --verbose --install --force || oefatal "autoreconf execution failed."
	sed -i 's:\./configure\(.[^-]\):./configure --build=${BUILD_SYS} --host=${HOST_SYS} --target=${TARGET_SYS} --prefix=${prefix} --exec_prefix=${exec_prefix} --bindir=${bindir} --sbindir=${sbindir} --libexecdir=${libexecdir} --datadir=${datadir} --sysconfdir=${sysconfdir} --sharedstatedir=${sharedstatedir} --localstatedir=${localstatedir} --libdir=${libdir} --includedir=${includedir} --oldincludedir=${oldincludedir} --infodir=${infodir} --mandir=${mandir}\1:' Makefile.PL
}