package/bitwise: new package

Bitwise is multi base interactive calculator supporting dynamic base
conversion and bit manipulation.  It's a handy tool for low level
hackers, kernel developers and device drivers developers.

Signed-off-by: Ramon Fried <rfried.dev@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
This commit is contained in:
Ramon Fried 2020-07-06 12:37:43 +03:00 committed by Thomas Petazzoni
parent 93a4298f35
commit 10733547c3
5 changed files with 32 additions and 0 deletions

View File

@ -2140,6 +2140,9 @@ N: Refik Tuzakli <tuzakli.refik@gmail.com>
F: package/freescale-imx/
F: package/paho-mqtt-cpp/
N: Ramon Fried <rfried.dev@gmail.com>
F: package/bitwise/
N: Raphaël Mélotte <raphael.melotte@essensium.com>
F: package/jbig2dec/

View File

@ -148,6 +148,7 @@ endmenu
menu "Development tools"
source "package/bats-core/Config.in"
source "package/binutils/Config.in"
source "package/bitwise/Config.in"
source "package/bsdiff/Config.in"
source "package/bustle/Config.in"
source "package/check/Config.in"

11
package/bitwise/Config.in Normal file
View File

@ -0,0 +1,11 @@
config BR2_PACKAGE_BITWISE
bool "bitwise"
select BR2_PACKAGE_NCURSES
select BR2_PACKAGE_READLINE
help
Bitwise is multi base interactive calculator
supporting dynamic base conversion and bit manipulation.
It's a handy tool for low level hackers,
kernel developers and device drivers developers.
https://github.com/mellowcandle/bitwise

View File

@ -0,0 +1,3 @@
# Locally calculated
sha256 33ce934fb99dadf7652224152cc135a0abf6a211adde53d96e9be7067567749c bitwise-v0.41.tar.gz
sha256 3972dc9744f6499f0f9b2dbf76696f2ae7ad8af9b23dde66d6af86c9dfb36986 COPYING

View File

@ -0,0 +1,14 @@
################################################################################
#
# bitwise
#
################################################################################
BITWISE_VERSION = 0.41
BITWISE_SITE = https://github.com/mellowcandle/bitwise/releases/download/v$(BITWISE_VERSION)
BITWISE_SOURCE = bitwise-v$(BITWISE_VERSION).tar.gz
BITWISE_DEPENDENCIES = ncurses readline
BITWISE_LICENSE = GPL-3.0
BITWISE_LICENSE_FILES = COPYING
$(eval $(autotools-package))