mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 22:37:14 +08:00
26 lines
758 B
Bash
26 lines
758 B
Bash
#
|
|
# Chakra Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer (i686): Phil Miller <philm[at]chakra-project[dog]org>
|
|
# maintainer (x86_64): Manuel Tortosa <manutortosa[at]chakra-project[dot]org>
|
|
|
|
pkgname=lcms
|
|
pkgver=1.19
|
|
pkgrel=1
|
|
pkgdesc="Lightweight color management development library/engine"
|
|
arch=(i686 x86_64)
|
|
license=('custom')
|
|
depends=('libtiff>=3.9.4')
|
|
url="http://www.littlecms.com"
|
|
options=('!libtool')
|
|
source=(http://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}.tar.gz)
|
|
md5sums=('8af94611baf20d9646c7c2c285859818')
|
|
|
|
build() {
|
|
cd ${srcdir}/${pkgname}-${pkgver}
|
|
./configure --prefix=/usr
|
|
make
|
|
make DESTDIR=${pkgdir} install
|
|
install -Dm 644 COPYING \
|
|
${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
|
|
} |