mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-04 19:07:13 +08:00
348d542db8
will commit them separately next time... it's just too much work to do separate commits right now
32 lines
675 B
Bash
32 lines
675 B
Bash
#
|
|
# Chakra Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer abveritas[at]chakra-project[dot]org>
|
|
|
|
pkgname=lcms2
|
|
pkgver=2.5
|
|
pkgrel=1
|
|
pkgdesc="Small-footprint color management engine"
|
|
arch=('x86_64')
|
|
url="http://www.littlecms.com/"
|
|
license=('MIT')
|
|
depends=('libtiff')
|
|
options=(!libtool)
|
|
source=("http://downloads.sourceforge.net/project/lcms/lcms/$pkgver/lcms2-$pkgver.tar.gz")
|
|
sha1sums=('bab3470471fc7756c5fbe71be9a3c7d677d2ee7b')
|
|
|
|
build() {
|
|
cd "$srcdir"/lcms2-$pkgver
|
|
|
|
./configure --prefix=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "$srcdir"/lcms2-$pkgver
|
|
|
|
make DESTDIR="$pkgdir/" install
|
|
install -D -m644 COPYING "$pkgdir"/usr/share/licenses/$pkgname/COPYING
|
|
}
|
|
|