Package Details: ladybird 20250312-1

Git Clone URL: https://aur.archlinux.org/ladybird.git (read-only, click to copy)
Package Base: ladybird
Description: Truly independent web browser
Upstream URL: https://github.com/LadybirdBrowser/ladybird
Licenses: BSD-2-Clause
Submitter: arojas
Maintainer: CxByte
Last Packager: timschumi
Votes: 31
Popularity: 3.64
First Submitted: 2023-04-01 08:36 (UTC)
Last Updated: 2025-03-12 12:05 (UTC)

Pinned Comments

timschumi commented on 2025-02-14 07:21 (UTC)

There is no new tagged (or otherwise differentiable) version to update to. Existing bumps to arbitrary revisions have been done whenever I get around to it to avoid the package falling into complete disrepair (which would cause it to be deleted and most likely recreated by some third party) and to make sure that people who don't pay attention don't get a version that is years out of date. The actual package has always been ladybird-git, and that will remain the case for the foreseeable future as well.

Latest Comments

« First ‹ Previous 1 2 3 4 5

MortimerHoughton commented on 2024-06-03 22:09 (UTC)

New repository for Ladybird:

https://github.com/LadybirdWebBrowser/ladybird

jdrdan commented on 2023-11-13 20:50 (UTC) (edited on 2023-11-13 20:51 (UTC) by jdrdan)

Changed my PKGBUILD to add some options to cmake to fix detection of thread support on aarch64.

  cmake \
    -B build \
    -S 'serenity/Ladybird' \
    -DCMAKE_BUILD_TYPE=Release \
    -DCMAKE_INSTALL_PREFIX='/usr' \
    -DCMAKE_THREAD_LIBS_INIT="pthread" \
    -DCMAKE_HAVE_THREADS_LIBRARY=1 \
    -DCMAKE_USE_WIN32_THREADS_INIT=0 \
    -DCMAKE_USE_PTHREADS_INIT=1 \
    -DTHREADS_PREFER_PTHREAD_FLAG=ON \
    -GNinja \
    -Wno-dev