Package Details: openicc 1.3.1-1

Git Clone URL: https://aur.archlinux.org/openicc.git (read-only, click to copy)
Package Base: openicc
Description: Colour management projects to share ICC related implementation details
Upstream URL: http://www.freedesktop.org/wiki/OpenIcc
Licenses: GPL
Submitter: robertfoster
Maintainer: robertfoster
Last Packager: robertfoster
Votes: 13
Popularity: 0.000000
First Submitted: 2011-01-02 09:55 (UTC)
Last Updated: 2021-03-03 21:18 (UTC)

Latest Comments

peippo commented on 2021-02-23 13:39 (UTC)

I had to apply the following patch to build with a makepkg srcdir/pkgdir inside a dot-directory (such as /home/user/.cache/makepkg/)

diff --unified --recursive --text a/configure b/configure
--- a/configure 2012-03-25 19:09:49.000000000 +0300
+++ b/configure 2021-02-23 15:32:35.974966717 +0200
@@ -496,7 +496,7 @@

 for i in $MAKEFILE_DIR; do
   mkdir -p $i
-  test -n "$ECHO" && $ECHO "src_dir = $ROOT_DIR/$i" | sed 's%/\.%%' >> "$i/makefile"
+  test -n "$ECHO" && $ECHO "src_dir = $ROOT_DIR/$i" | sed 's%/\./%%' >> "$i/makefile"
   test -n "$ECHO" && $ECHO "" >> "$i/makefile"
   test -n "$ECHO" && $ECHO "COPY = $COPY" >> "$i/makefile"
   test -n "$ECHO" && $ECHO "LINK = $LINK" >> "$i/makefile"

someonewithpc commented on 2020-05-29 10:40 (UTC) (edited on 2020-05-29 10:42 (UTC) by someonewithpc)

Needed to patch the configure script with

9c9,12
< ROOT_DIR=$(dirname "$0")
---
> ROOT_DIR="$0"
> ROOT_DIR=`echo $ROOT_DIR | sed 's%/configure%%1'`
> ROOT_DIR=`(cd $ROOT_DIR; pwd)`
> BUILD_DIR="`pwd`"

to be able to build

<deleted-account> commented on 2013-02-23 13:15 (UTC)

I had to change the sources to: http://downloads.sourceforge.net/... instead of http://dl.sourceforge.net/project/... Otherwise, the download fails.