summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorM0Rf302015-06-17 15:56:12 +0200
committerM0Rf302015-06-17 15:56:12 +0200
commit61731a07121f621664939054b77047702d818e97 (patch)
tree5d3bea4d900fd4e7cd00d08cc9c7112c4ed87835
downloadaur-61731a07121f621664939054b77047702d818e97.tar.gz
Initial import
-rw-r--r--.SRCINFO14
-rw-r--r--PKGBUILD20
2 files changed, 34 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO
new file mode 100644
index 000000000000..84fc57297ab9
--- /dev/null
+++ b/.SRCINFO
@@ -0,0 +1,14 @@
+pkgbase = libxcm
+ pkgdesc = A library containing the a reference implementation of the net-color specs
+ pkgver = 0.5.3
+ pkgrel = 1
+ url = http://oyranos.org/
+ arch = i686
+ arch = x86_64
+ license = MIT
+ depends = xorg-server
+ source = http://prdownloads.sourceforge.net/oyranos/libXcm-0.5.3.tar.bz2
+ md5sums = c5d293b235f98f0bd211678ffefebc4c
+
+pkgname = libxcm
+
diff --git a/PKGBUILD b/PKGBUILD
new file mode 100644
index 000000000000..7d861d93dacb
--- /dev/null
+++ b/PKGBUILD
@@ -0,0 +1,20 @@
+# Maintainer: M0Rf30
+
+pkgname=libxcm
+pkgver=0.5.3
+pkgrel=1
+pkgdesc="A library containing the a reference implementation of the net-color specs"
+url="http://oyranos.org/"
+arch=('i686' 'x86_64')
+depends=('xorg-server')
+source=("http://prdownloads.sourceforge.net/oyranos/libXcm-$pkgver.tar.bz2")
+license=('MIT')
+
+package() {
+ cd $srcdir/libXcm-$pkgver
+ ./configure --prefix=/usr
+ make
+ make DESTDIR=$pkgdir install
+}
+
+md5sums=('c5d293b235f98f0bd211678ffefebc4c')