2007-09-13 00:27:39 +10:00
|
|
|
# Description: Commandline screen capture.
|
2020-06-15 20:41:08 +10:00
|
|
|
# URL: https://github.com/resurrecting-open-source-projects/scrot
|
2014-11-10 23:28:07 +11:00
|
|
|
# Maintainer: Danny Rawlins, crux at romster dot me
|
2020-07-21 22:18:47 +10:00
|
|
|
# Depends on: autoconf-archive giblib xorg-libxcursor xorg-libxcomposite
|
2006-10-29 12:26:50 +01:00
|
|
|
|
|
|
|
name=scrot
|
2021-02-06 14:03:34 +11:00
|
|
|
version=1.5
|
2006-10-29 12:26:50 +01:00
|
|
|
release=1
|
2020-06-15 20:41:08 +10:00
|
|
|
source=(https://github.com/resurrecting-open-source-projects/scrot/archive/$version/$name-$version.tar.gz)
|
2006-10-29 12:26:50 +01:00
|
|
|
|
|
|
|
build() {
|
2020-06-15 20:41:08 +10:00
|
|
|
cd $name-$version
|
2015-10-31 17:08:56 +11:00
|
|
|
|
2020-06-15 20:41:08 +10:00
|
|
|
./autogen.sh
|
2019-03-10 15:50:56 +11:00
|
|
|
./configure \
|
|
|
|
--prefix=/usr \
|
|
|
|
--mandir=/usr/share/man
|
|
|
|
|
2006-10-29 12:26:50 +01:00
|
|
|
make
|
|
|
|
make DESTDIR=$PKG install
|
2021-02-06 14:03:34 +11:00
|
|
|
|
|
|
|
rm -r $PKG/usr/share/doc
|
2006-10-29 12:26:50 +01:00
|
|
|
}
|