Package Details: wmderland-git 1.0.4-2

Git Clone URL: https://aur.archlinux.org/wmderland-git.git (read-only, click to copy)
Package Base: wmderland-git
Description: X11 tiling window manager using space partitioning trees
Upstream URL: https://github.com/aesophor/wmderland
Keywords: wmderland
Licenses: MIT
Submitter: m.aesophor
Maintainer: m.aesophor
Last Packager: m.aesophor
Votes: 1
Popularity: 0.000000
First Submitted: 2020-02-25 05:22 (UTC)
Last Updated: 2020-12-04 06:04 (UTC)

Dependencies (3)

Required by (0)

Sources (1)

Latest Comments

m.aesophor commented on 2020-12-04 06:06 (UTC)

@Dylan14 Thanks for the fix! The patch is in.

Dylan14 commented on 2020-12-04 05:28 (UTC) (edited on 2020-12-04 05:29 (UTC) by Dylan14)

A note: packages should not install to /usr/local/. Instead, packages should install binaries to /usr/bin/. This piece of code will fix this (insert after the line "make DESTDIR="${pkgdir}/" PREFIX="/usr/" install"):

# Move resulting executables to /usr/bin/...
  install -dm755 "${pkgdir}"/usr/bin/
  mv "${pkgdir}"/usr/local/bin/wmderland "${pkgdir}"/usr/bin/wmderland
  mv "${pkgdir}"/usr/local/bin/wmderlandc "${pkgdir}"/usr/bin/wmderlandc
  # ...and delete /usr/local/bin
  rm -rf "${pkgdir}"/usr/local/bin