diff options
Diffstat (limited to 'community/babl/APKBUILD')
-rw-r--r-- | community/babl/APKBUILD | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/community/babl/APKBUILD b/community/babl/APKBUILD index 93dbaf25b3..1879dbfe60 100644 --- a/community/babl/APKBUILD +++ b/community/babl/APKBUILD @@ -1,7 +1,7 @@ # Maintainer: Natanael Copa <ncopa@alpinelinux.org> pkgname=babl pkgver=0.1.52 -pkgrel=0 +pkgrel=1 pkgdesc="Dynamic, any to any, pixel format conversion library" url="http://gegl.org/babl" arch="all" @@ -11,8 +11,6 @@ source="https://ftp.gimp.org/pub/babl/${pkgver%.*}/$pkgname-$pkgver.tar.bz2" build() { cd "$builddir" - # See: https://bugzilla.gnome.org/show_bug.cgi?id=790745 - [ "$CARCH" = "s390x" ] && sed -i -e 's/-Ofast//g' configure ./configure \ --build=$CBUILD \ --host=$CHOST \ @@ -22,13 +20,6 @@ build() { check() { cd "$builddir" - for i in float-to-8bit; do - cat > tests/$i <<- EOF - #!/bin/sh - echo Skipping test "$i" - EOF - chmod +x "tests/$i" - done make check } |