scrot: 0.8.13 -> 0.8.18

This commit is contained in:
Danny Rawlins 2019-03-10 15:50:56 +11:00
parent b88e19d80f
commit cbfd34244d
3 changed files with 17 additions and 13 deletions

View File

@ -1,6 +1,7 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/bin/
-rwxr-xr-x root/root usr/bin/scrot
drwxr-xr-x root/root usr/man/
drwxr-xr-x root/root usr/man/man1/
-rw-r--r-- root/root usr/man/man1/scrot.1.gz
drwxr-xr-x root/root usr/share/
drwxr-xr-x root/root usr/share/man/
drwxr-xr-x root/root usr/share/man/man1/
-rw-r--r-- root/root usr/share/man/man1/scrot.1.gz

View File

@ -1,6 +1,6 @@
untrusted comment: verify with /etc/ports/contrib.pub
RWSagIOpLGJF3/dK8XNBB8+ftwkV7WArGzKphmW2yx4EPNlm2YtJy3QcvHT9rDjlCQdiQtwZtRNGRIe4ELJrRMrx0JZURGeUbw8=
SHA256 (Pkgfile) = 1467fb8232d13b69e36da0edd61d8e0887366d8ae723ec77178b7cca85b4b2ab
SHA256 (.footprint) = 9a61b025348f90c81cfe640d1e5a21298a496725798dbe27fcde1a3c9da63247
RWSagIOpLGJF35T0LSKECs04XmJUq6hIoO6o1qJ0FW58spsDu0jqNja9utj1zCtEshMG89eSufiLzaZ1B8Q2hKOPgq20dr+6jgQ=
SHA256 (Pkgfile) = 1850d0b8870309d289297edf922485210d9030051bb226f8508c56b470ce3116
SHA256 (.footprint) = 4043d00c86d02ab444547ccb9633bddfbe2bbad286f7676a24822fcda3cd5c0e
SHA256 (scrot_0.8.orig.tar.gz) = 613d1cf524c2b62ce3c65f1232ea4f05c7daf248d5e82ff2a6892c98093994f2
SHA256 (scrot_0.8-13.debian.tar.gz) = 508bb60c9f476d593a49ca0f1bbe0b3d5a742289146c5b33033435fc286e2376
SHA256 (scrot_0.8-18.debian.tar.xz) = ea000f1f824a57e3058ef83de8d11112d4930cddeb51fb68253fc0756ed3a95d

View File

@ -1,14 +1,13 @@
# Description: Commandline screen capture.
# URL: http://scrot.sourcearchive.com/
# URL: https://tracker.debian.org/pkg/scrot
# Maintainer: Danny Rawlins, crux at romster dot me
# Packager: Mark Rosenstand, mark at borkware dot net
# Depends on: giblib
name=scrot
version=0.8.13
version=0.8.18
release=1
source=(http://scrot.sourcearchive.com/downloads/${version%.*}-${version##*.}/${name}_${version%.*}.orig.tar.gz
http://scrot.sourcearchive.com/downloads/${version%.*}-${version##*.}/${name}_${version%.*}-${version##*.}.debian.tar.gz)
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)
build() {
for patch in $(<$SRC/debian/patches/series); do
@ -17,8 +16,12 @@ build() {
cd $name-${version%.*}
./configure --prefix=/usr
./configure \
--prefix=/usr \
--mandir=/usr/share/man
make
make DESTDIR=$PKG install
rm -r $PKG/usr/doc
}