mirror of
https://github.com/mac-a-r0ni/crux-xfce4.git
synced 2025-01-22 22:52:20 +01:00
28 lines
538 B
Plaintext
28 lines
538 B
Plaintext
# Description: An application to take screenhoots
|
|
# URL: https://www.xfce.org
|
|
# Maintainer: jolupa <jolupameister(at)gmail[dot](com)
|
|
# Depends on: xfce4-panel libxfce4util libxfce4ui libsoup
|
|
|
|
name=xfce4-screenshooter
|
|
version=1.9.5
|
|
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 \
|
|
--disable-static \
|
|
--disable-gtk-docs \
|
|
--disable-gtk-2 \
|
|
--enable-gtk3 \
|
|
--with-x
|
|
|
|
make
|
|
|
|
make DESTDIR=$PKG install
|
|
}
|