contrib/scrot/Pkgfile

28 lines
666 B
Plaintext
Raw Normal View History

2007-09-12 16:27:39 +02:00
# Description: Commandline screen capture.
2019-03-10 05:50:56 +01:00
# URL: https://tracker.debian.org/pkg/scrot
2014-11-10 13:28:07 +01:00
# Maintainer: Danny Rawlins, crux at romster dot me
2007-09-12 16:27:39 +02:00
# Depends on: giblib
2006-10-29 12:26:50 +01:00
name=scrot
2019-03-10 05:50:56 +01:00
version=0.8.18
2006-10-29 12:26:50 +01:00
release=1
2019-03-10 05:50:56 +01:00
source=(http://http.debian.net/debian/pool/main/s/$name/${name}_${version%.*}.orig.tar.gz
http://http.debian.net/debian/pool/main/s/$name/${name}_${version%.*}-${version##*.}.debian.tar.xz)
2006-10-29 12:26:50 +01:00
build() {
2015-10-31 07:08:56 +01:00
for patch in $(<$SRC/debian/patches/series); do
patch -p1 -d $SRC/$name-${version%.*} -i $SRC/debian/patches/$patch
done
cd $name-${version%.*}
2019-03-10 05:50:56 +01:00
./configure \
--prefix=/usr \
--mandir=/usr/share/man
2006-10-29 12:26:50 +01:00
make
make DESTDIR=$PKG install
2019-03-10 05:50:56 +01:00
2006-10-29 12:26:50 +01:00
rm -r $PKG/usr/doc
}