mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-04 19:37:14 +08:00
29 lines
829 B
Bash
29 lines
829 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=libxcm
|
|
pkgver=0.4.2
|
|
pkgrel=1
|
|
pkgdesc="The libXcm library contains the a reference implementation of the net-color \
|
|
spec. The net-color spec allows to attach colour regions to X windows to \
|
|
communicate with colour servers."
|
|
url="http://oyranos.org/"
|
|
arch=('i686' 'x86_64')
|
|
makedepends=()
|
|
depends=(xorg-server)
|
|
optdepends=()
|
|
source=("http://prdownloads.sourceforge.net/oyranos/libXcm-$pkgver.tar.gz")
|
|
license=('MIT')
|
|
|
|
build() {
|
|
cd $srcdir/libXcm-$pkgver
|
|
./configure --prefix=/usr || return 1
|
|
make || return 1
|
|
make DESTDIR=$pkgdir install
|
|
|
|
}
|
|
|
|
md5sums=('cf1ad865a5fb0e91fee805ea13c8ea7e') |