diff options
author | Danny Rawlins <monster.romster@gmail.com> | 2020-06-15 20:41:08 +1000 |
---|---|---|
committer | Danny Rawlins <monster.romster@gmail.com> | 2020-06-15 20:41:08 +1000 |
commit | 4235e6fc30779801909098fcff6f7276d92a1d3c (patch) | |
tree | bc327dbd8c8cfe6503b2fdf96e0d74aec0f815ab /scrot | |
parent | 18b8500380dead13d726c3d13109a5af3226d0c5 (diff) | |
download | contrib-4235e6fc30779801909098fcff6f7276d92a1d3c.tar.gz contrib-4235e6fc30779801909098fcff6f7276d92a1d3c.tar.xz |
[notify] scrot: 0.8.18 -> 1.3 new dependencies: autoconf-archive xorg-libxcursor
Diffstat (limited to 'scrot')
-rw-r--r-- | scrot/.signature | 7 | ||||
-rw-r--r-- | scrot/Pkgfile | 18 |
2 files changed, 9 insertions, 16 deletions
diff --git a/scrot/.signature b/scrot/.signature index d099016e5..427b99b6d 100644 --- a/scrot/.signature +++ b/scrot/.signature @@ -1,6 +1,5 @@ untrusted comment: verify with /etc/ports/contrib.pub -RWSagIOpLGJF35T0LSKECs04XmJUq6hIoO6o1qJ0FW58spsDu0jqNja9utj1zCtEshMG89eSufiLzaZ1B8Q2hKOPgq20dr+6jgQ= -SHA256 (Pkgfile) = 1850d0b8870309d289297edf922485210d9030051bb226f8508c56b470ce3116 +RWSagIOpLGJF38S3bhLbSINM+BpnVgEuYq8S+alPwoB+duPuJI2d4n0WVL6icbs0MZMDcn5C4sGwT2TWNXGi8oAQmYY22QRfaQc= +SHA256 (Pkgfile) = 3e3b23b52eeccb1bcd806936a91f2d8bbaf86c1a5df979497c011a6bae931520 SHA256 (.footprint) = 4043d00c86d02ab444547ccb9633bddfbe2bbad286f7676a24822fcda3cd5c0e -SHA256 (scrot_0.8.orig.tar.gz) = 613d1cf524c2b62ce3c65f1232ea4f05c7daf248d5e82ff2a6892c98093994f2 -SHA256 (scrot_0.8-18.debian.tar.xz) = ea000f1f824a57e3058ef83de8d11112d4930cddeb51fb68253fc0756ed3a95d +SHA256 (scrot-1.3.tar.gz) = b9bfcc01a3021bd53864b3c7b5f7b1b11b3e430be15ce97332431c48003d64ac diff --git a/scrot/Pkgfile b/scrot/Pkgfile index 0b873fb48..e007c7678 100644 --- a/scrot/Pkgfile +++ b/scrot/Pkgfile @@ -1,27 +1,21 @@ # Description: Commandline screen capture. -# URL: https://tracker.debian.org/pkg/scrot +# URL: https://github.com/resurrecting-open-source-projects/scrot # Maintainer: Danny Rawlins, crux at romster dot me -# Depends on: giblib +# Depends on: autoconf-archive giblib xorg-libxcursor name=scrot -version=0.8.18 +version=1.3 release=1 -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) +source=(https://github.com/resurrecting-open-source-projects/scrot/archive/$version/$name-$version.tar.gz) build() { - for patch in $(<$SRC/debian/patches/series); do - patch -p1 -d $SRC/$name-${version%.*} -i $SRC/debian/patches/$patch - done - - cd $name-${version%.*} + cd $name-$version + ./autogen.sh ./configure \ --prefix=/usr \ --mandir=/usr/share/man make make DESTDIR=$PKG install - - rm -r $PKG/usr/doc } |