Package Details: midori-git 11.3.2.r24.ga9c39ee-1

Git Clone URL: https://aur.archlinux.org/midori-git.git (read-only, click to copy)
Package Base: midori-git
Description: Web browser based on Floorp
Upstream URL: https://github.com/goastian/midori-desktop
Licenses: MPL-2.0
Conflicts: midori
Provides: midori
Submitter: SolarAquarion
Maintainer: xiota
Last Packager: xiota
Votes: 149
Popularity: 0.156837
First Submitted: 2018-10-28 14:20 (UTC)
Last Updated: 2024-04-29 09:13 (UTC)

Dependencies (49)

Required by (14)

Sources (4)

Pinned Comments

xiota commented on 2024-01-18 05:33 (UTC) (edited on 2024-03-19 18:27 (UTC) by xiota)

Midori 11.x.y is based on Floorp.

  • For Midori 9.x, based on WebKit, use PKGBUILD.midori-classic (included with aur/midori).

  • If you have problems building, try building in a clean chroot.

  • Some options are available:

    • _build_pgo=false makepkg – Build without PGO. Faster compilation, but reduced performance.
    • _build_pgo_reuse=false makepkg – Make a new profile. Can delete the old profile for similar effect.
  • This package reuses the previously created PGO profile to reduce rebuild times while retaining most of the performance benefit of PGO. Generate a new profile when:

    • You feel there are too many "function control flow change" warnings.
    • Performance drops about 10% below PGO with a fresh profile. browserbench.org/speedometer may be used to track performance for this purpose.
  • Avoid flagging and commenting at the same time for the same issue.

    • Flag for common issues with standard solutions, like depends or submodule changes.
    • Comment for issues requiring explanation or debugging.
      • Use a pastebin for blocks of text more than a few lines.

Latest Comments

« First ‹ Previous 1 .. 5 6 7 8 9 10

av6 commented on 2010-07-03 16:54 (UTC)

And webkitgtk-svn is not a requisite, it can be built against regular libwebkit. Also pkgconfig is now called pkg-config.

<deleted-account> commented on 2010-07-03 04:47 (UTC)

Some midori extensions require vala now ("History List" and "External applications"

knedlyk commented on 2010-05-23 19:00 (UTC)

Do we need vala for Midori? Config checks for it: Checking for program valac

bardo commented on 2010-03-30 00:38 (UTC)

For those not wanting to wait for gtk-2.20 support in the git trunk, here's a quick and dirty compilation fix, not really nice and it throws up some warnings but it works. Put it under 'cd $_gitname-build'. sed -i 's/GTK_WIDGET_VISIBLE/gtk_widget_get_visible/' midori/midori-{browser,locationaction,panel,searchaction,view}.c sed -i 's/GTK_WIDGET_REALIZED/gtk_widget_get_realized/' midori/midori-browser.c sed -i 's/GTK_WIDGET_IS_SENSITIVE/gtk_widget_is_sensitive/' midori/midori-view.c sed -i 's/GTK_WIDGET_HAS_FOCUS/gtk_widget_has_focus/' midori/sokoke.c