summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorScore_Under2016-05-01 16:13:53 +0100
committerScore_Under2016-05-01 16:13:55 +0100
commita76e5bece0c28a3f9c9edffa0880bf713b9ff873 (patch)
tree9be00d50dbbffc6712df45604ed49cad75efc702
parent35c389f454ff5fc048943d7ee1a428cbd2a9c200 (diff)
downloadaur-a76e5bece0c28a3f9c9edffa0880bf713b9ff873.tar.gz
Follow changes to pacman and to the build process
Pacman now requires a license array, and the build process has switched from autotools to cmake.
-rw-r--r--.SRCINFO7
-rw-r--r--PKGBUILD10
2 files changed, 10 insertions, 7 deletions
diff --git a/.SRCINFO b/.SRCINFO
index e2e3a512aa1a..ad05c90b2bc3 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,11 +1,14 @@
+# Generated by mksrcinfo v8
+# Sun May 1 15:13:32 UTC 2016
pkgbase = ksm_preload-git
pkgdesc = Library which allows legacy applications to use Kernel Same-page Merging
- pkgver = 0.10.4.r254cc3b
- pkgrel = 2
+ pkgver = 0.10.8.rfa46b5c
+ pkgrel = 1
url = http://vleu.net/ksm_preload/
arch = i686
arch = x86_64
license = GPL3
+ makedepends = cmake
optdepends = sh: ksm-wrapper script
source = git+https://github.com/unbrice/ksm_preload.git
source = ksm-wrapper
diff --git a/PKGBUILD b/PKGBUILD
index 87a1c904a3e2..bc320c4347ee 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,15 +1,16 @@
# Maintainer: Score_Under <seejay.11@gmail.com>
_pkgname=ksm_preload
pkgname=$_pkgname-git
-pkgver=0.10.4.r254cc3b
-pkgrel=2
+pkgver=0.10.8.rfa46b5c
+pkgrel=1
pkgdesc='Library which allows legacy applications to use Kernel Same-page Merging'
url=http://vleu.net/ksm_preload/
arch=(i686 x86_64)
-license=GPL3
+license=(GPL3)
source=("git+https://github.com/unbrice/$_pkgname.git"
ksm-wrapper)
optdepends=('sh: ksm-wrapper script')
+makedepends=(cmake)
sha256sums=('SKIP'
'348c6c707eef3f6efed5896492faa6482ad8fe964a0eab8eec8fec1217069610')
@@ -26,8 +27,7 @@ pkgver() {
build() {
cdgit
- autoreconf -is
- ./configure --prefix=/usr
+ cmake .
make
}