mirror of
https://github.com/mac-a-r0ni/crux-xfce4.git
synced 2025-01-22 22:52:20 +01:00
33 lines
625 B
Plaintext
33 lines
625 B
Plaintext
# Description: An application to take screenhoots
|
|
# URL: https://www.xfce.org
|
|
# Maintainer: jolupa, jlpavon at me dot com
|
|
# Depends on: xfce4-dev-tools xfce4-panel libxfce4util libxfce4ui libsoup
|
|
|
|
name=xfce4-screenshooter
|
|
version=1.9.6
|
|
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 \
|
|
--disable-static \
|
|
--disable-gtk-doc \
|
|
--disable-gtk-doc-html \
|
|
--disable-gtk-doc-pdf \
|
|
--disable-gtk2 \
|
|
--enable-gtk3 \
|
|
--with-x
|
|
|
|
make
|
|
|
|
make DESTDIR=$PKG install
|
|
|
|
#rm -r $PKG/usr/share/locale
|
|
|
|
}
|