mirror of
https://github.com/mac-a-r0ni/crux-xfce4.git
synced 2025-01-22 22:52:20 +01:00
29 lines
568 B
Plaintext
29 lines
568 B
Plaintext
# Description: Screensaver for Xfce
|
|
# URL: https://git.xfce.org/apps/xfce4-screensaver/
|
|
# Maintainer: jolupa, jolupameister at gmail dot com
|
|
# Depends on: xorg-libxscrnsaver
|
|
|
|
name=xfce4-screensaver
|
|
version=0.1.4
|
|
release=2
|
|
source=(https://git.xfce.org/apps/$name/snapshot/$name-$version.tar.gz)
|
|
|
|
build() {
|
|
|
|
cd $name-$version
|
|
|
|
./autogen.sh \
|
|
--prefix=/usr \
|
|
--libexecdir=/usr/lib/$name \
|
|
--sysconfdir=/etc \
|
|
--disable-static \
|
|
--with-mit-ext \
|
|
--with-console-kit
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
|
|
#rm -r $PKG/usr/share/locale
|
|
|
|
}
|