mirror of
https://github.com/mac-a-r0ni/crux-xfce4.git
synced 2025-02-02 18:52:19 +01:00
30 lines
670 B
Plaintext
30 lines
670 B
Plaintext
# Description: An application to take screenhoots
|
|
# URL: https://www.xfce.org
|
|
# Maintainer: jolupa, jlpavon at me dot com
|
|
# Depends on: libxfce4util libxfce4ui libsoup libxml2 exo xorg-libxext xorg-libxfixes
|
|
|
|
name=xfce4-screenshooter
|
|
version=1.9.7
|
|
release=1
|
|
source=(http://archive.xfce.org/src/apps/xfce4-screenshooter/1.9/$name-$version.tar.bz2)
|
|
|
|
build() {
|
|
|
|
cd $name-$version
|
|
./configure \
|
|
--prefix=/usr \
|
|
--libexecdir=/usr/lib/$name \
|
|
--disable-static \
|
|
--disable-gtk-doc \
|
|
--enable-xfixes \
|
|
--disable-debug \
|
|
--disable-gtk2 \
|
|
--enable-gtk3
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
|
|
#rm -r $PKG/usr/share/locale
|
|
|
|
}
|