Andrew Geissler | 72956ed | 2021-01-08 16:11:14 -0600 | [diff] [blame] | 1 | SUMMARY = "Bitwise terminal calculator" |
| 2 | DESCRIPTION = "Bitwise is multi base interactive calculator \ |
| 3 | supporting dynamic base conversion and bit manipulation.\ |
| 4 | It's a handy tool for low level hackers, \ |
| 5 | kernel developers and device drivers developers." |
| 6 | |
| 7 | HOMEPAGE = "https://github.com/mellowcandle/bitwise" |
| 8 | SECTION = "console/utils" |
| 9 | |
| 10 | LICENSE = "GPLv3" |
| 11 | LIC_FILES_CHKSUM = "file://COPYING;md5=1ebbd3e34237af26da5dc08a4e440464" |
| 12 | |
| 13 | SRC_URI = "https://github.com/mellowcandle/bitwise/releases/download/v${PV}/bitwise-v${PV}.tar.gz \ |
| 14 | file://0001-makefile.am-Fix-build-when-build-dir-is-not-same-as-.patch \ |
| 15 | " |
Andrew Geissler | f103a7f | 2021-05-07 16:09:40 -0500 | [diff] [blame] | 16 | SRC_URI[sha256sum] = "d3d43cef47bf8f49e85f7ed381c3eaf1df921ca51805e0962f1a97a517e1d1d2" |
Andrew Geissler | 72956ed | 2021-01-08 16:11:14 -0600 | [diff] [blame] | 17 | |
| 18 | UPSTREAM_CHECK_URI = "https://github.com/mellowcandle/bitwise/releases" |
| 19 | |
| 20 | S = "${WORKDIR}/${BPN}-v${PV}" |
| 21 | |
| 22 | DEPENDS = "ncurses readline" |
| 23 | |
| 24 | inherit autotools |