Package Details: bemenu-x11-git 0.6.16.r4.ga04dea3-1

Git Clone URL: https://aur.archlinux.org/bemenu-git.git (read-only, click to copy)
Package Base: bemenu-git
Description: X11 renderer for bemenu
Upstream URL: https://github.com/Cloudef/bemenu
Licenses: GPL3, LGPL3
Conflicts: bemenu-x11
Provides: bemenu-renderer-git, bemenu-x11
Submitter: dacoit
Maintainer: TrialnError
Last Packager: TrialnError
Votes: 17
Popularity: 0.001371
First Submitted: 2015-08-12 17:25 (UTC)
Last Updated: 2023-09-30 23:46 (UTC)

Latest Comments

« First ‹ Previous 1 2 3 Next › Last »

e-v commented on 2020-04-10 10:28 (UTC)

This should do it:

# Maintainer: Danny Bautista <pyrolagus at gmail.com>
# Contributor: elvirolo <elvirolo@posteo.net>

pkgname=bemenu-git
pkgver=r373.6343a65
pkgrel=1

pkgdesc='Dynamic menu library and client program inspired by dmenu with support for wayland compositors.'
url='https://github.com/Cloudef/bemenu'
arch=('i686' 'x86_64')
license=('GPL3' 'LGPL3')
depends=('pango')
makedepends=('git' 'libxkbcommon' 'libxinerama' 'wayland')
optdepends=('wayland: For the wayland backend.'
            'libxkbcommon: For the wayland backend.'
            'libxinerama: For the x11 backend.'
            'ncurses: For the curses backend.')

provides=('bemenu')
conflicts=('bemenu')

source=('git://github.com/Cloudef/bemenu')

md5sums=('SKIP')

pkgver() {
    cd bemenu
    printf 'r%s.%s' "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}

build() {
    cd bemenu
    make PREFIX=/usr
}

package() {
    cd bemenu
    make install PREFIX=/usr DESTDIR="$pkgdir"
}

gmes78 commented on 2020-03-16 18:24 (UTC)

Build is broken (looks like it doesn't use cmake anymore, there's a GNUmakefile in the sources now):

CMake Error: The source directory does not appear to contain CMakeLists.txt.

Fandekasp commented on 2019-12-22 08:44 (UTC)

I can't build this package under wayland. the -DBEMENU_X11_RENDERER=ON requires X11, and setting it to OFF still triggers lot of errors like "Package 'xproto', required by 'x11', not found".

I didn't have any problem installing community/bemenu, and I couldn't find a way to tweak bemenu-git's PKGFILE to install successfully. Guess I'll have to wait a bit more before I can use bemenu --line-height.

yrotisoperresuhc commented on 2019-09-16 22:38 (UTC)

I can't post the build output right now but this might be dependent on the AUR helper being used. I am using pikaur.

PyroLagus commented on 2019-09-16 19:06 (UTC)

That's odd. The build output does say "-- Could NOT find Doxygen (missing: DOXYGEN_EXECUTABLE)", but the build still succeeds as it should. Could you link the build output here? Also, sorry for the late answer, I really need to improve my email workflow.

yrotisoperresuhc commented on 2019-08-27 23:33 (UTC)

Not sure if anything changed upstream, but does this package now require doxygen in makedepends?

I was not able to build until I installed doxygen. (Build would fail at find_doxygen step.)

PyroLagus commented on 2019-05-13 13:37 (UTC)

I wrote an email already but didn't get a reply, so I'll write a comment here as well:

First of all, you should update the pkgver or pkgrel, so that AUR helpers automatically pull the new PKGBUILD. And it would also be nice if you could add -DBEMENU_WAYLAND_RENDERER=ON as suggested by ElVirolo. bemenu should still run under X with that option enabled afaik, but you should still test it first to be sure.

PS: If the email address listed on your profile is out-of-date, you should change it.

e-v commented on 2019-05-05 13:02 (UTC)

For Wayland support, one should add -DBEMENU_WAYLAND_RENDERER=ON at the end of the "cmake" line.

ruahcra commented on 2019-04-28 09:43 (UTC)

Has anyone tried to contact the maintainer?

mayhem commented on 2019-03-28 11:00 (UTC) (edited on 2019-03-28 11:01 (UTC) by mayhem)

==> Starting pkgver()... ==> ERROR: pkgver is not allowed to contain colons, forward slashes, hyphens or whitespace. ==> ERROR: pkgver() generated an invalid version: r273.0.1.0-7-g8ad07cf

This can be fixed by replacing

printf 'r%s.%s' "$(git rev-list --count HEAD)" "$(git describe --always)"

with

printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"