Add clark-git
This commit is contained in:
parent
a4657c8102
commit
1a69fbaf0d
2 changed files with 50 additions and 0 deletions
36
clark-git/PKGBUILD
Normal file
36
clark-git/PKGBUILD
Normal file
|
@ -0,0 +1,36 @@
|
|||
_name=clark
|
||||
pkgname=$_name-git
|
||||
pkgver=20130604
|
||||
pkgrel=1
|
||||
pkgdesc="Store bookmarks, in common lisp."
|
||||
arch=('x86_64')
|
||||
url="http://code.ryuslash.org/cgit.cgi/clark/about/"
|
||||
license=('GPL3')
|
||||
depends=('cl-sqlite' 'sbcl')
|
||||
source=("git://ryuslash.org/clark.git")
|
||||
md5sums=('SKIP')
|
||||
options=(!strip)
|
||||
install=clark.install
|
||||
|
||||
pkgver()
|
||||
{
|
||||
cd "$srcdir"/"$_name"
|
||||
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
|
||||
}
|
||||
|
||||
package()
|
||||
{
|
||||
cd "$srcdir/$_name"
|
||||
make install DESTDIR="$pkgdir/usr/" LISP="sbcl --no-userinit"
|
||||
}
|
14
clark-git/clark.install
Normal file
14
clark-git/clark.install
Normal file
|
@ -0,0 +1,14 @@
|
|||
INFO_DIR=/usr/share/info
|
||||
|
||||
post_install() {
|
||||
install-info $INFO_DIR/clark.info.gz $INFO_DIR/dir 2> /dev/null
|
||||
}
|
||||
|
||||
post_upgrade() {
|
||||
post_install $1
|
||||
}
|
||||
|
||||
pre_remove() {
|
||||
install-info --delete $INFO_DIR/clark.info.gz $INFO_DIR/dir \
|
||||
2> /dev/null
|
||||
}
|
Loading…
Reference in a new issue