diff options
Diffstat (limited to 'recipes-extended/dev86/dev86_0.16.21.bb')
| -rw-r--r-- | recipes-extended/dev86/dev86_0.16.21.bb | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/recipes-extended/dev86/dev86_0.16.21.bb b/recipes-extended/dev86/dev86_0.16.21.bb new file mode 100644 index 00000000..d38f7bda --- /dev/null +++ b/recipes-extended/dev86/dev86_0.16.21.bb | |||
| @@ -0,0 +1,35 @@ | |||
| 1 | DESCRIPTION = "This is a cross development C compiler, assembler and linker environment for the production of 8086 executables (Optionally MSDOS COM)" | ||
| 2 | HOMEPAGE = "http://www.debath.co.uk/dev86/" | ||
| 3 | LICENSE = "GPLv2" | ||
| 4 | LIC_FILES_CHKSUM = "file://COPYING;md5=8ca43cbc842c2336e835926c2166c28b" | ||
| 5 | SECTION = "console/tools" | ||
| 6 | |||
| 7 | SRCREV = "c6f36cbafa979710b809f117562773dbd6825918" | ||
| 8 | SRC_URI = "git://github.com/lkundrak/${BPN}.git;protocol=https" | ||
| 9 | |||
| 10 | S = "${WORKDIR}/git" | ||
| 11 | |||
| 12 | BBCLASSEXTEND = "native" | ||
| 13 | EXTRA_OEMAKE = "VERSION=${PV} PREFIX=${prefix} DIST=${D}" | ||
| 14 | |||
| 15 | do_compile() { | ||
| 16 | |||
| 17 | oe_runmake make.fil | ||
| 18 | oe_runmake -f make.fil bcc86 as86 ld86 | ||
| 19 | |||
| 20 | } | ||
| 21 | |||
| 22 | do_install() { | ||
| 23 | |||
| 24 | if [ "${prefix}"=="" ] ; then | ||
| 25 | export prefix=/usr | ||
| 26 | fi | ||
| 27 | |||
| 28 | oe_runmake install-bcc | ||
| 29 | ln -s ../lib/bcc/bcc-cpp ${D}${prefix}/bin/bcc-cpp | ||
| 30 | ln -s ../lib/bcc/bcc-cc1 ${D}${prefix}/bin/bcc-cc1 | ||
| 31 | |||
| 32 | } | ||
| 33 | COMPATIBLE_HOST = "(i.86|x86_64).*-linux" | ||
| 34 | FILES_${PN} += "${libdir}/bcc" | ||
| 35 | INSANE_SKIP_${PN} = "already-stripped" | ||
