blob: 1cec09fa3b968afe24cdce34ae43f231b9b612f8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# Description: fournit la gestion de couleurs pour d'autres programmes
# URL: http://www.littlecms.com/
# Maintainer: NuTyX core team
# Packager: thierryn1 at hispeed dot ch
# Depends on: libtiff, libjpeg
# Run on: libtiff,libjpeg
name=lcms2
version=2.2
release=1
source=( http://sourceforge.net/projects/lcms/files/$name/$version/$name-$version.tar.gz)
build() {
cd $name*
./configure --prefix=/usr \
--mandir=/usr/share/man \
--infodir=/usr/share/info
make
make DESTDIR=$PKG install
}
|