desktop/icc_examin/PKGBUILD

32 lines
768 B
Bash
Raw Normal View History

pkgname=icc_examin
2017-09-08 21:06:37 +08:00
pkgver=0.56
pkgrel=1
pkgdesc="ICC Examin is a colour management utility."
url="http://oyranos.org/"
arch=('x86_64')
license=('MIT')
depends=('ftgl' 'fltk' 'openicc' 'oyranos' 'elektra')
2017-09-08 21:06:37 +08:00
source=("https://github.com/oyranos-cms/icc-examin/archive/$pkgver.tar.gz"
configure_tests.patch)
sha1sums=('ece3ab2f386d84f731a0e0d0eaadbc08eb3a0c84'
'3f1175583609a20d92bdd93ec54f2e68a42281b5')
build() {
2017-09-08 21:10:02 +08:00
cd $srcdir/icc-examin-$pkgver
2017-09-08 21:06:37 +08:00
unset LDFLAGS
patch -Np0 <"$srcdir"/configure_tests.patch
./configure --prefix=/usr \
--enable-threads \
--enable-xft \
--enable-shared
make
}
package() {
2017-09-08 21:10:02 +08:00
cd $srcdir/icc-examin-$pkgver
make DESTDIR=$pkgdir install
}