mirror of
https://github.com/mac-a-r0ni/crux-xfce4.git
synced 2025-01-23 07:02:20 +01:00
32 lines
701 B
Plaintext
32 lines
701 B
Plaintext
# Description: Screensaver for Xfce
|
|
# URL: https://git.xfce.org/apps/xfce4-screensaver/
|
|
# Maintainer: jolupa, jlpavon at me dot com
|
|
# Depends on: xfce4-dev-tools xorg-libxscrnsaver xfconf libxfce4ui libxfce4util garcon gtk3 libxklavier exo
|
|
|
|
name=xfce4-screensaver
|
|
version=0.1.5
|
|
release=1
|
|
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 \
|
|
--mandir=/usr/man \
|
|
--disable-static \
|
|
--with-mit-ext \
|
|
--with-console-kit \
|
|
--without-systemd \
|
|
--with-libgl
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
|
|
#rm -r $PKG/usr/share/locale
|
|
|
|
}
|