forked from ports/contrib
18 lines
386 B
Plaintext
18 lines
386 B
Plaintext
|
# Description: Commandline screen capture util like "import"
|
||
|
# URL: http://linuxbrit.co.uk/scrot/
|
||
|
# Maintainer: Mark Rosenstand, mark at borkware dot net
|
||
|
# Depends on: giblib
|
||
|
|
||
|
name=scrot
|
||
|
version=0.8
|
||
|
release=1
|
||
|
source=(http://linuxbrit.co.uk/downloads/scrot-$version.tar.gz)
|
||
|
|
||
|
build() {
|
||
|
cd scrot-$version
|
||
|
./configure --prefix=/usr
|
||
|
make
|
||
|
make DESTDIR=$PKG install
|
||
|
rm -r $PKG/usr/doc
|
||
|
}
|