lxqt/screengrab/Pkgfile

27 lines
608 B
Plaintext
Raw Permalink Normal View History

2024-07-23 08:20:18 -04:00
# Description: Crossplatform tool for grabbing screenshots of your desktop
# URL: https://github.com/lxqt/screengrab
# Maintainer: Jay Lanagan, j at lngn dot net
# Depends on: kwindowsystem libqtxdg
2024-07-23 08:20:18 -04:00
name=screengrab
2024-11-08 05:51:05 -05:00
version=2.9.0
2024-07-23 08:20:18 -04:00
release=1
source=(https://github.com/lxqt/$name/releases/download/$version/$name-$version.tar.xz)
build() {
mkdir -p build
cd build
cmake "$SRC/$name-$version" \
-DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_INSTALL_LIBDIR=lib \
-DCMAKE_BUILD_TYPE=Release \
-Wno-dev
make
make DESTDIR="$PKG" install
2024-11-08 05:51:05 -05:00
rm -rf $PKG/usr/share/doc
2024-07-23 08:20:18 -04:00
rm -rf $PKG/usr/share/$name/translations
}