summaryrefslogtreecommitdiffstats
path: root/clark-git
diff options
context:
space:
mode:
authorGravatar Tom Willemse2013-06-06 23:01:05 +0200
committerGravatar Tom Willemse2013-06-06 23:01:05 +0200
commit71a7aa985ccda0de55ae23a423fd426989b4fbaa (patch)
tree6cb4812bdfbc397acd71fd30952a69dabc8ee6ab /clark-git
parent1a69fbaf0d09f31a191a113823afaa8339f8fd00 (diff)
downloadpkgbuilds-71a7aa985ccda0de55ae23a423fd426989b4fbaa.tar.gz
pkgbuilds-71a7aa985ccda0de55ae23a423fd426989b4fbaa.zip
Bump clark-git to 20130606
Due to some changes in the code the `prepare' function is no longer needed, the sbcl to call can be specified with the `LISP' make variable.
Diffstat (limited to 'clark-git')
-rw-r--r--clark-git/PKGBUILD9
1 files changed, 2 insertions, 7 deletions
diff --git a/clark-git/PKGBUILD b/clark-git/PKGBUILD
index 0031fdb..3492ec8 100644
--- a/clark-git/PKGBUILD
+++ b/clark-git/PKGBUILD
@@ -1,6 +1,6 @@
_name=clark
pkgname=$_name-git
-pkgver=20130604
+pkgver=20130606
pkgrel=1
pkgdesc="Store bookmarks, in common lisp."
arch=('x86_64')
@@ -18,15 +18,10 @@ pkgver()
git log -1 --pretty=format:"%cd" --date=short | sed s/-//g
}
-prepare() {
- cd "$srcdir/$_name/lisp"
- sed -i "s/^\(LISP.*\)/\1 --no-userinit --eval \"(require :sb-posix)\"/" Makefile
-}
-
build()
{
cd "$srcdir/$_name"
- make
+ make LISP="sbcl --no-userinit --disable-debugger --eval \"(require 'sb-posix)\""
}
package()