contrib/scrot/Pkgfile
2023-01-21 10:41:56 +00:00

25 lines
624 B
Plaintext

# Description: Commandline screen capture.
# URL: https://github.com/resurrecting-open-source-projects/scrot
# Maintainer: Danny Rawlins, crux at romster dot me
# Depends on: autoconf-archive giblib libbsd xorg-libxcomposite xorg-libxcursor xorg-libxinerama
name=scrot
version=1.8.1
release=1
source=(https://github.com/resurrecting-open-source-projects/scrot/archive/$version/$name-$version.tar.gz)
build() {
export PKG_CONFIG_PATH="/usr/opt/libbsd/lib/pkgconfig"
cd $name-$version
./autogen.sh
./configure \
--prefix=/usr \
--mandir=/usr/share/man
make
make DESTDIR=$PKG install
rm -r $PKG/usr/share/doc
}