From: Waldemar Brodkorb <wbx@openadk.org>
To: buildroot@buildroot.org
Subject: [Buildroot] [PATCH] package/chawan: new package
Date: Sun, 13 Sep 2026 09:53:47 +0200 [thread overview]
Message-ID: <aqZWi-3XxmbWmJbA@waldemar-brodkorb.de> (raw)
Chawan is a text-mode web browser and pager for Unix-like systems, with
a focus on implementing modern web standards while remaining
self-contained, easy to understand and extensible.
It includes functionality such as CSS, inline images inside the
terminal, and JavaScript through a small, independent browser engine.
Signed-off-by: Waldemar Brodkorb <wbx@openadk.org>
---
DEVELOPERS | 1 +
package/Config.in | 1 +
package/chawan/Config.in | 14 ++++++++++++++
package/chawan/chawan.hash | 3 +++
package/chawan/chawan.mk | 39 ++++++++++++++++++++++++++++++++++++++
5 files changed, 58 insertions(+)
create mode 100644 package/chawan/Config.in
create mode 100644 package/chawan/chawan.hash
create mode 100644 package/chawan/chawan.mk
diff --git a/DEVELOPERS b/DEVELOPERS
index 97eb2d9cac..780577f091 100644
--- a/DEVELOPERS
+++ b/DEVELOPERS
@@ -3461,6 +3461,7 @@ F: board/stmicroelectronics/stm32f746-disco/
F: configs/qemu_riscv32_nommu_virt_defconfig
F: configs/stm32f746_disco_sd_defconfig
F: package/asterisk/
+F: package/chawan/
F: package/evilwm/
F: package/fbv/
F: package/libpam-pkcs11/
diff --git a/package/Config.in b/package/Config.in
index 243b390d1c..76ae6f5810 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -2441,6 +2441,7 @@ endif
source "package/casync/Config.in"
source "package/casync-nano/Config.in"
source "package/cfm/Config.in"
+ source "package/chawan/Config.in"
source "package/chrony/Config.in"
source "package/civetweb/Config.in"
source "package/cloudflared/Config.in"
diff --git a/package/chawan/Config.in b/package/chawan/Config.in
new file mode 100644
index 0000000000..8bea79ef6d
--- /dev/null
+++ b/package/chawan/Config.in
@@ -0,0 +1,14 @@
+config BR2_PACKAGE_CHAWAN
+ bool "chawan"
+ depends on BR2_USE_MMU
+ depends on BR2_TOOLCHAIN_GCC_AT_LEAST_11
+ select BR2_PACKAGE_BROTLI
+ select BR2_PACKAGE_LIBSSH2
+ select BR2_PACKAGE_OPENSSL
+ help
+ A TUI Web-Browser.
+
+ https://chawan.net/
+
+comment "chawan needs a toolchain w/ gcc >= 11"
+ depends on !BR2_TOOLCHAIN_GCC_AT_LEAST_11
diff --git a/package/chawan/chawan.hash b/package/chawan/chawan.hash
new file mode 100644
index 0000000000..95f996d10a
--- /dev/null
+++ b/package/chawan/chawan.hash
@@ -0,0 +1,3 @@
+# Locally computed
+sha256 e0a06e1504e10a51c6009751d79b798c98d8274e559fe195d4b4b7ddadf91bb8 v0.4.4.tar.gz
+sha256 7e12e5df4bae12cb21581ba157ced20e1986a0508dd10d0e8a4ab9a4cf94e85c UNLICENSE
diff --git a/package/chawan/chawan.mk b/package/chawan/chawan.mk
new file mode 100644
index 0000000000..d16499f91a
--- /dev/null
+++ b/package/chawan/chawan.mk
@@ -0,0 +1,39 @@
+################################################################################
+#
+# chawan
+#
+################################################################################
+
+CHAWAN_VERSION = 0.4.4
+CHAWAN_SITE = https://git.sr.ht/~bptato/chawan/archive
+CHAWAN_SOURCE = v$(CHAWAN_VERSION).tar.gz
+CHAWAN_LICENSE = Public Domain
+CHAWAN_LICENSE_FILES = UNLICENSE
+
+CHAWAN_DEPENDENCIES = host-nim brotli libssh2 openssl
+
+ifeq ($(BR2_aarch64),y)
+CHAWAN_TARGET_ARCH = arm64
+else ifeq ($(BR2_x86_64),y)
+CHAWAN_TARGET_ARCH = amd64
+else
+CHAWAN_TARGET_ARCH = $(BR2_ARCH)
+endif
+
+TARGET_CONFIGURE_OPTS += \
+ FLAGS="--os=linux \
+ --cpu:$(CHAWAN_TARGET_ARCH) \
+ --gcc.exe:$(TARGET_CROSS)gcc \
+ --gcc.linkerexe:$(TARGET_CROSS)gcc" \
+ PREFIX="/usr"
+
+define CHAWAN_BUILD_CMDS
+ $(MAKE) $(TARGET_CONFIGURE_OPTS) -C $(@D) all
+endef
+
+define CHAWAN_INSTALL_TARGET_CMDS
+ $(MAKE) $(TARGET_CONFIGURE_OPTS) -C $(@D) \
+ DESTDIR=$(TARGET_DIR) install
+endef
+
+$(eval $(generic-package))
--
2.47.3
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
reply other threads:[~2026-09-13 7:53 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=aqZWi-3XxmbWmJbA@waldemar-brodkorb.de \
--to=wbx@openadk.org \
--cc=buildroot@buildroot.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox