diff options
author | Danny Rawlins <monster.romster@gmail.com> | 2019-03-10 15:50:56 +1100 |
---|---|---|
committer | Danny Rawlins <monster.romster@gmail.com> | 2019-03-10 15:50:56 +1100 |
commit | cbfd34244d19f7b73da55febecfa07d4646cdfa3 (patch) | |
tree | 2c92461791c74cd04cd6d1bf3eaf247d85a908dc /scrot | |
parent | b88e19d80fc774b60bb1b34cd0dfbac1e25a3e3c (diff) | |
download | contrib-cbfd34244d19f7b73da55febecfa07d4646cdfa3.tar.gz contrib-cbfd34244d19f7b73da55febecfa07d4646cdfa3.tar.xz |
scrot: 0.8.13 -> 0.8.18
Diffstat (limited to 'scrot')
-rw-r--r-- | scrot/.footprint | 7 | ||||
-rw-r--r-- | scrot/.signature | 8 | ||||
-rw-r--r-- | scrot/Pkgfile | 15 |
3 files changed, 17 insertions, 13 deletions
diff --git a/scrot/.footprint b/scrot/.footprint index 4544fe8d9..bf07eb6dc 100644 --- a/scrot/.footprint +++ b/scrot/.footprint @@ -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 diff --git a/scrot/.signature b/scrot/.signature index f5a984018..d099016e5 100644 --- a/scrot/.signature +++ b/scrot/.signature @@ -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 diff --git a/scrot/Pkgfile b/scrot/Pkgfile index d4211cd86..0b873fb48 100644 --- a/scrot/Pkgfile +++ b/scrot/Pkgfile @@ -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 } |