mirror of
https://github.com/mac-a-r0ni/crux-xfce4.git
synced 2025-02-02 02:42:19 +01:00
25 lines
586 B
Plaintext
25 lines
586 B
Plaintext
# Description: Xfce4-screenshooter allows you to capture the entire screen, the active window or a selected region.
|
|
# URL: https://xfce.org
|
|
# Maintainer: mac-a-r0ni, j at lngn dot net
|
|
# Depends on: xfce4-panel libsoup3
|
|
|
|
name=xfce4-screenshooter
|
|
version=1.11.1
|
|
release=1
|
|
source=(https://archive.xfce.org/src/apps/xfce4-screenshooter/1.11/xfce4-screenshooter-$version.tar.bz2)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--sysconfdir=/etc \
|
|
--libexecdir=/usr/lib \
|
|
--disable-nls
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
|
|
rm -rf $PKG/usr/lib/xfce4/panel/plugins/*.la
|
|
}
|