www

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

commit 5dc96a920e05f7ed6a2f7e54b1210b982eb2c496
parent 53e85ddcba62a07b59c4e32f548b1cabfca0c53f
Author: Ilia Bozhinov <ammen99@gmail.com>
Date:   Sun, 16 Aug 2020 18:09:49 +0200

Merge pull request #17 from soreau/updates

Updates
Diffstat:
Minstall.sh | 11++++++++++-
1 file changed, 10 insertions(+), 1 deletion(-)

diff --git a/install.sh b/install.sh @@ -161,6 +161,15 @@ if [ ${PREFIX} != '/usr' ]; then fi $SUDO install -m 755 $BUILDROOT/start_wayfire.sh $PREFIX/bin/startwayfire +ask_confirmation "Do you want to install wayfire-plugins-extra? [y/n]? " +if [ $yn = Y ]; then + check_download wayfire-plugins-extra + cd $BUILDROOT/wayfire-plugins-extra + PKG_CONFIG_PATH=$PKG_CONFIG_PATH:${PREFIX}/${DEST_LIBDIR}/pkgconfig meson build --prefix=${PREFIX} + ninja -C build + $SUDO ninja -C build install +fi + ask_confirmation "Do you want to install WCM, a graphical configuration tool for Wayfire [y/n]? " if [ $yn = Y ]; then check_download wcm @@ -171,7 +180,7 @@ if [ $yn = Y ]; then fi SESSIONS_DIR=/usr/share/wayland-sessions -ask_confirmation "Do you want to install wayfire.desktop to $SESSIONS_DIR/ [y/n]?" +ask_confirmation "Do you want to install wayfire.desktop to $SESSIONS_DIR/ [y/n]? " if [ $yn = Y ]; then cp $BUILDROOT/wayfire.desktop.in $BUILDROOT/wayfire.desktop sed -i "s@^Exec.*@Exec=$PREFIX/bin/startwayfire@g" $BUILDROOT/wayfire.desktop