diff options
| -rw-r--r-- | meta-oe/recipes-support/picocom/picocom_1.7.bb | 19 | ||||
| -rw-r--r-- | meta-oe/recipes-support/picocom/picocom_git.bb | 23 |
2 files changed, 23 insertions, 19 deletions
diff --git a/meta-oe/recipes-support/picocom/picocom_1.7.bb b/meta-oe/recipes-support/picocom/picocom_1.7.bb deleted file mode 100644 index d2a76c0a94..0000000000 --- a/meta-oe/recipes-support/picocom/picocom_1.7.bb +++ /dev/null | |||
| @@ -1,19 +0,0 @@ | |||
| 1 | SUMMARY = "Lightweight and minimal (~20K) dumb-terminal emulation program" | ||
| 2 | SECTION = "console/utils" | ||
| 3 | LICENSE = "GPLv2+" | ||
| 4 | HOMEPAGE = "http://code.google.com/p/picocom/" | ||
| 5 | LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=393a5ca445f6965873eca0259a17f833" | ||
| 6 | |||
| 7 | SRC_URI = "http://picocom.googlecode.com/files/picocom-${PV}.tar.gz" | ||
| 8 | |||
| 9 | SRC_URI[md5sum] = "8eaba1d31407e8408674d6e57af447ef" | ||
| 10 | SRC_URI[sha256sum] = "d0f31c8f7a215a76922d30c81a52b9a2348c89e02a84935517002b3bc2c1129e" | ||
| 11 | |||
| 12 | EXTRA_OEMAKE = "'CC=${CC}' 'LD=${LD}' 'VERSION=${PV}' \ | ||
| 13 | 'CFLAGS=${CFLAGS}' 'LDFLAGS=${LDFLAGS}' " | ||
| 14 | |||
| 15 | do_install () { | ||
| 16 | install -d ${D}${bindir} | ||
| 17 | install -m 0755 ${BPN} pcasc pcxm pcym pczm ${D}${bindir}/ | ||
| 18 | } | ||
| 19 | |||
diff --git a/meta-oe/recipes-support/picocom/picocom_git.bb b/meta-oe/recipes-support/picocom/picocom_git.bb new file mode 100644 index 0000000000..e091094cf4 --- /dev/null +++ b/meta-oe/recipes-support/picocom/picocom_git.bb | |||
| @@ -0,0 +1,23 @@ | |||
| 1 | SUMMARY = "Lightweight and minimal (~20K) dumb-terminal emulation program" | ||
| 2 | SECTION = "console/utils" | ||
| 3 | LICENSE = "GPLv2+" | ||
| 4 | HOMEPAGE = "http://code.google.com/p/picocom/" | ||
| 5 | LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=3000e4830620e310fe65c0eb69df9e8a" | ||
| 6 | |||
| 7 | BASEPV = "2.2" | ||
| 8 | PV = "${BASEPV}+git${SRCPV}" | ||
| 9 | |||
| 10 | SRCREV = "deffd18c24145bd6f965f44e735a50b65810ccdc" | ||
| 11 | |||
| 12 | SRC_URI = "git://github.com/npat-efault/picocom" | ||
| 13 | |||
| 14 | S = "${WORKDIR}/git" | ||
| 15 | |||
| 16 | EXTRA_OEMAKE = "'CC=${CC}' 'LD=${CC}' 'VERSION=${BASEPV}' \ | ||
| 17 | 'CFLAGS=${CFLAGS}' 'LDFLAGS=${LDFLAGS}' " | ||
| 18 | |||
| 19 | do_install () { | ||
| 20 | install -d ${D}${bindir} | ||
| 21 | install -m 0755 ${BPN} pcasc pcxm pcym pczm ${D}${bindir}/ | ||
| 22 | } | ||
| 23 | |||
