18 lines
339 B
Plaintext
18 lines
339 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
NAME=scrot
|
||
|
VERSION=nightly
|
||
|
UPSTREAM=https://github.com/resurrecting-open-source-projects/scrot.git
|
||
|
. soft
|
||
|
|
||
|
# depends on
|
||
|
# autoconf
|
||
|
# autoconf-archive
|
||
|
# imlib2-devel
|
||
|
# libxcomposite-devel
|
||
|
# libxfixes-devel
|
||
|
|
||
|
sh -c 'cd "$SRC"; ./autogen.sh'
|
||
|
sh -c 'cd "$SRC"; ./configure MAKE="$MAKE" PREFIX="$PREFIX"'
|
||
|
$MAKE -C "$SRC" install
|