Package Details: mons-git r120.375bbba-2

Git Clone URL: https://aur.archlinux.org/mons-git.git (read-only, click to copy)
Package Base: mons-git
Description: KISS and POSIX Shell script to quickly manage three monitors on X
Upstream URL: https://github.com/Ventto/mons
Licenses: MIT
Conflicts: mons
Provides: mons
Submitter: cjbassi
Maintainer: arkhan
Last Packager: arkhan
Votes: 0
Popularity: 0.000000
First Submitted: 2018-12-07 04:09 (UTC)
Last Updated: 2023-04-27 00:44 (UTC)

Latest Comments

bluebearblue commented on 2023-08-01 07:03 (UTC)

There is a byte-order mark (BOM) at the beginnning of the PKGBUILD, which causes my makepkg to fail. Removing the BOM results in a successfull build. (In case someone does not know how to do this, here is a quick fix with vim: Open the file, :set nobomb and save)

slowsage commented on 2023-01-27 06:55 (UTC) (edited on 2023-01-27 06:55 (UTC) by slowsage)

This patch fixes the path set for libshlist. Else it points to file in the build path.

-- PKGBUILD 2023-01-26 22:27:28.611839385 -0800
+++ PKGBUILD    2023-01-26 22:49:16.840464731 -0800
@@ -28,6 +28,7 @@

 prepare() {
   cd ${srcdir}
+  sed -i -e "s#%LIBDIR%#/usr/lib/libshlist#" ${_pkgname}/mons.sh
   rm -r ${_pkgname}/libshlist
   mv libshlist ${_pkgname}/libshlist
 }