summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrés Rodríguez2017-04-26 00:32:15 -0300
committerAndrés Rodríguez2017-04-26 00:32:15 -0300
commitd2ae85c516defa3f1b70e70035a4eb3bd26e558a (patch)
treeb314747bb94c9954682cffc9caf76ea9dbdae431
downloadaur-d2ae85c516defa3f1b70e70035a4eb3bd26e558a.tar.gz
Initial commit
-rw-r--r--.SRCINFO14
-rw-r--r--PKGBUILD22
2 files changed, 36 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO
new file mode 100644
index 000000000000..2c5d8d87aea7
--- /dev/null
+++ b/.SRCINFO
@@ -0,0 +1,14 @@
+# Generated by mksrcinfo v8
+# Wed Apr 26 03:32:02 UTC 2017
+pkgbase = libsysconfcpus-git
+ pkgdesc = LD_PRELOAD library to fake number of available cores - patched git version
+ pkgver = 0.5
+ pkgrel = 1
+ url = https://github.com/obmarg/libsysconfcpus
+ arch = x86_64
+ license = GPL2
+ source = git://github.com/obmarg/libsysconfcpus.git
+ sha256sums = SKIP
+
+pkgname = libsysconfcpus-git
+
diff --git a/PKGBUILD b/PKGBUILD
new file mode 100644
index 000000000000..fcb4a0792c7a
--- /dev/null
+++ b/PKGBUILD
@@ -0,0 +1,22 @@
+# Maintainer: Andrés Rodríguez <andres.rodriguez __at__ lithersoft.com>
+
+pkgname=('libsysconfcpus-git')
+pkgver=0.5
+pkgrel=1
+pkgdesc="LD_PRELOAD library to fake number of available cores - patched git version"
+arch=(x86_64)
+url="https://github.com/obmarg/libsysconfcpus"
+license=('GPL2')
+source=("git://github.com/obmarg/libsysconfcpus.git")
+sha256sums=("SKIP")
+
+build() {
+ cd libsysconfcpus
+ ./configure --prefix=/usr
+ make
+}
+
+package() {
+ cd $srcdir/libsysconfcpus
+ make DESTDIR=$pkgdir install
+}