From a69d00a8124dfe4d3ab18eb95edde15c9a569026 Mon Sep 17 00:00:00 2001 From: Rasmus Thomsen Date: Fri, 11 Jan 2019 16:18:34 +0100 Subject: [PATCH] zzuf: update to 0.15. --- srcpkgs/zzuf/template | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/srcpkgs/zzuf/template b/srcpkgs/zzuf/template index 24ca937ee26..f679e4f9b21 100644 --- a/srcpkgs/zzuf/template +++ b/srcpkgs/zzuf/template @@ -1,26 +1,26 @@ -# Template build file for 'zzuf'. +# Template file for 'zzuf' pkgname=zzuf -version=0.13 -revision=3 +version=0.15 +revision=1 build_style=gnu-configure configure_args="--disable-static" short_desc="Multi-purpose fuzzer" maintainer="pancake " +license="WTFPL" homepage="http://caca.zoy.org/wiki/zzuf" -license="GPL-3" -distfiles="http://caca.zoy.org/files/zzuf/${pkgname}-${version}.tar.gz" -checksum=0842c548522028c3e0d9c9cf7d09f6320b661f33824bb6df19ca209851bdf627 +distfiles="https://github.com/samhocevar/zzuf/releases/download/v${version}/zzuf-${version}.tar.bz2" +checksum=04353d94c68391b3945199f100ab47fc5ff7815db1e92581a600d4175e3a6872 post_configure() { case "$XBPS_TARGET_MACHINE" in - *-musl) # Disable the *64 variants of libc functions because + *-musl) # Disable the *64 variants of libc functions because # they are just macros calling the regular functions - sed -i config.h -e "/#define HAVE_.*64/s;#define \(HAVE_.*\);/* #undef \1 */;" ;; + sed -i config.h \ + -e "/#define HAVE_.*64/s;#define \(HAVE_.*\);/* #undef \1 */;" \ + -e "/#define HAVE_AIO_READ/d" ;; esac } post_install() { - # Rename conflicting files - mv ${DESTDIR}/usr/share/man/man1/{zzcat,zzuf-cat}.1 - mv ${DESTDIR}/usr/bin/{zzcat,zzuf-cat} + vlicense COPYING }