
Originally Posted by
mondoUNC
I've read about and used older versions of
AWM and really loved it. I just noticed 3.0 is out, but there is very little information on it. I tried using the guide in the wiki for
building from a git checkout. I did my best to follow the instructions but its all a bit out of my league.
Has anyone else tried out AWM 3? I'd really love it if someone could help me get it installed on my computer. I know I'm facing a lot of difficulty trying to learn Lua as I use and configure it, but it seems like a fun and exciting project. I'd really hate to have to wait until it gets easier to install.
To get things started...Following the guide, I think this is where things fell apart:
edit debian/rules and change "--disable-xcb" into "--enable-xcb", and comment out "dh_shlibdeps", save, then
Code:
$ sudo dpkg-buildpackage -rfakeroot
$ sudo dpkg -i ../libcairo2_1.6.0-0ubuntu2_i386.deb ../libcairo2-dev_1.6.0-0ubuntu2_i386.deb
Well, I may be able to help a little. I've just successfully installed awesome from git following the same instructions as you. I too mucked up my first install. To clean up and try again, I simply deleted the util folder created on my first attempt (caution, make sure you've got the correct util folder as this command is very unforgiving and will wipe it clean without any prompting):
Then, I restarted from the beginning of step 5 again. Where I went wrong the first time was only executing the code in the code blocks. However, it is necessary to do the following:
Code:
edit debian/rules and change "--disable-xcb" into "--enable-xcb", and comment out "dh_shlibdeps", save, then..
Do this by the following:
then search/replace both instances of "--disable-xcb" with "--enable-xcb". Finally, search for "dh_shlibdeps" and place a '#' (without quotes) at the start of the line to comment it out. Save and exit.
Further on, where it says:
Code:
make && sudo make install
this should really be
Code:
cd awesome
make && sudo make install
Good luck! (And I feel for you, I have absolutely no idea what 99% of what I did was!)
Bookmarks