my-ostree-OS/buildinstallxfceaddons.sh

24 lines
565 B
Bash
Raw Normal View History

2026-01-27 10:52:11 -03:00
#!/bin/sh
export PKG_CONFIG_PATH="/usr/lib/pkgconfig:$PKG_CONFIG_PATH"
2026-01-27 19:45:15 -03:00
tar -xf xfce4-pulseaudio-plugin-0.5.1.tar.xz
cd xfce4-pulseaudio-plugin-0.5.1
./autogen.sh --prefix=/usr && make && make install
cd ../
2026-01-27 10:52:11 -03:00
tar -xf xfce4-mixer-4.20.0.tar.xz
cd xfce4-mixer-4.20.0
./autogen.sh --prefix=/usr && make && make install
2026-01-27 11:54:28 -03:00
cd ../
#tar -xjf xfce4-notifyd-0.9.7.tar.bz2
#cd xfce4-notifyd-0.9.7
#./configure --prefix=/usr && make && make install
tar -xf xfce4-clipman-plugin-1.7.0.tar.xz
cd xfce4-clipman-plugin-1.7.0
./autogen.sh --prefix=/usr && make && make install
2026-01-27 19:45:15 -03:00