blob: 6c20f9ca1255909baac9ac2aa41f97ae5d27a3fb (
plain)
1 # Description: Commandline screen capture.
2 # URL: https://github.com/resurrecting-open-source-projects/scrot
3 # Maintainer: Danny Rawlins, crux at romster dot me
4 # Depends on: autoconf-archive giblib xorg-libxcursor xorg-libxcomposite
5
6 name=scrot
7 version=1.6
8 release=1
9 source=(https://github.com/resurrecting-open-source-projects/scrot/archive/$version/$name-$version.tar.gz)
10
11 build() {
12 cd $name-$version
13
14 ./autogen.sh
15 ./configure \
16 --prefix=/usr \
17 --mandir=/usr/share/man
18
19 make
20 make DESTDIR=$PKG install
21
22 rm -r $PKG/usr/share/doc
23 }
|