Search Criteria
Package Details: dwm-git 6.2.r0.gcb3f58a-1
Git Clone URL: | https://aur.archlinux.org/dwm-git.git (read-only, click to copy) |
---|---|
Package Base: | dwm-git |
Description: | A dynamic window manager for X |
Upstream URL: | http://dwm.suckless.org |
Keywords: | dynamic tiling windowmanager X11 |
Licenses: | |
Conflicts: | |
Provides: | |
Submitter: | gtmanfred |
Maintainer: | bidulock |
Last Packager: | bidulock |
Votes: | 30 |
Popularity: | 0.000337 |
First Submitted: | 2012-12-04 01:17 |
Last Updated: | 2019-11-07 08:31 |
Dependencies (4)
Required by (3)
- dwm-custom (requires dwm)
- dwm-gnome (requires dwm)
- dwmbar-git (requires dwm) (optional)
Latest Comments
1 2 3 4 Next › Last »
4le34n commented on 2019-11-09 07:59
Look, maybe it will be more convenient. In this case, config.h is not needed in the array. So implemented in st-git PKGBUILD.
prepare() { cd $srcdir/${pkgname%-git}
echo 'Copying config.def.h to $startdir...' cp -fv config.def.h "$startdir/"
if [[ -f "$startdir/config.h" ]]; then echo 'Copy config.h to the build directory...' cp -fv "$startdir/config.h" config.h fi }
bidulock commented on 2019-11-07 08:33
Sure, done. I also removed the epoch and made the version conform to -git package practice.
4le34n commented on 2019-11-06 07:52
Correct the prepare section:
prepare() { cd $_pkgname if [[ -f "$srcdir/config.h" ]]; then cp -f "$srcdir/config.h" config.h fi }
mthead commented on 2019-02-23 22:42
Two instances of $pkgname/ need to be removed from the prepare section then it works.
mthead commented on 2019-02-22 11:06
My config.h is not being copied to src/dwm and therefore is not being utilized. I even checked taking the config.h that gets created by this package, making a slight modification (changed one colour), then placed that config.h into a newly extracted tarball. Still no. Could you check please?
Industrial commented on 2017-12-30 21:52
Somehow, something here is running 'apt-get'. https://gist.github.com/anonymous/987543a62bd197ff0db468ca381da7bf
tagener-noisu commented on 2016-10-22 13:03
Hey, I've changed your PKGBUILD so it uses git branches to store user configs and applied patches. Check it out https://github.com/tagener-noisu/dwm-pkgbuild
bidulock commented on 2016-04-18 05:46
The reason for epoch was the the version numbering system was change to comply with VCS PKGBUILD guidelines and the package would not upgrade without it.
keenerd commented on 2016-04-18 03:48
Please don't needlessly use `epoch` here. There is rarely ever reason to use it in the official repositories and it should never be used in the AUR.
bidulock commented on 2016-03-31 20:38
How about $SRCDEST/$pkgname/config.h ?