mirror of
https://github.com/mac-a-r0ni/crux-xfce4.git
synced 2025-01-22 22:52:20 +01:00
df863d6b58
thanks to jaeger for the testing!
32 lines
689 B
Plaintext
32 lines
689 B
Plaintext
# Description: Power Manager for Xfce
|
|
# URL: https://www.xfce.org
|
|
# Maintainer: mac-a-r0ni, j at lngn dot net
|
|
# Depends on: hicolor-icon-theme libnotify libxfce4ui upower xfce4-notifyd xfce4-panel
|
|
|
|
name=xfce4-power-manager
|
|
version=4.18.2
|
|
release=1
|
|
source=(https://archive.xfce.org/src/xfce/$name/${version:0:4}/$name-$version.tar.bz2)
|
|
|
|
build() {
|
|
|
|
cd $name-$version
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--libexecdir=/usr/lib/$name \
|
|
--sysconfdir=/etc \
|
|
--disable-network-manager \
|
|
--disable-systemd \
|
|
--enable-xfce4panel \
|
|
--disable-debug \
|
|
--disable-nls \
|
|
--disable-gtk-doc \
|
|
--disable-gtk-doc-html \
|
|
--disable-gtk-doc-pdf
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
|
|
}
|