mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 02:22:13 +08:00
32 lines
768 B
Bash
32 lines
768 B
Bash
pkgname=icc_examin
|
|
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')
|
|
source=("https://github.com/oyranos-cms/icc-examin/archive/$pkgver.tar.gz"
|
|
configure_tests.patch)
|
|
sha1sums=('ece3ab2f386d84f731a0e0d0eaadbc08eb3a0c84'
|
|
'3f1175583609a20d92bdd93ec54f2e68a42281b5')
|
|
|
|
build() {
|
|
cd $srcdir/icc-examin-$pkgver
|
|
|
|
unset LDFLAGS
|
|
patch -Np0 <"$srcdir"/configure_tests.patch
|
|
|
|
./configure --prefix=/usr \
|
|
--enable-threads \
|
|
--enable-xft \
|
|
--enable-shared
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd $srcdir/icc-examin-$pkgver
|
|
|
|
make DESTDIR=$pkgdir install
|
|
}
|