diff options
author | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2018-02-09 18:21:07 -0600 |
---|---|---|
committer | William Pitcock <nenolod@dereferenced.org> | 2018-02-10 02:50:15 +0000 |
commit | e6fe0c6dadaa0838c9cb57314405c6f8ec58f6ca (patch) | |
tree | 8ac9556c439cb695cfcf38a2b34be629c9722edf | |
parent | 5285dae30ac91fd9a327bc6cce16bbb4ba5f49d9 (diff) | |
download | aports-e6fe0c6dadaa0838c9cb57314405c6f8ec58f6ca.tar.bz2 aports-e6fe0c6dadaa0838c9cb57314405c6f8ec58f6ca.tar.xz |
main/imlib2: add test suite, explicitly configure
-rw-r--r-- | main/imlib2/APKBUILD | 18 |
1 files changed, 16 insertions, 2 deletions
diff --git a/main/imlib2/APKBUILD b/main/imlib2/APKBUILD index ee173def9a..cdfbecfb77 100644 --- a/main/imlib2/APKBUILD +++ b/main/imlib2/APKBUILD @@ -1,7 +1,7 @@ # Maintainer: Natanael Copa <ncopa@alpinelinux.org> pkgname=imlib2 pkgver=1.4.10 -pkgrel=0 +pkgrel=1 pkgdesc="Library that does image file loading and saving as well as rendering, manipulation, arbitrary polygon support" url="https://sourceforge.net/projects/enlightenment/" arch="all" @@ -23,10 +23,24 @@ build() { --sysconfdir=/etc/imlib2 \ --x-libraries=/usr/lib \ --disable-mmx \ - --disable-amd64 + --disable-amd64 \ + --enable-visibility-hiding \ + --with-x \ + --with-bzip2 \ + --with-gif \ + --with-id3 \ + --with-jpeg \ + --with-png \ + --with-tiff \ + --with-zlib make } +check() { + cd "$builddir" + make check +} + package() { cd "$builddir" make DESTDIR=$pkgdir install |