This commit is contained in:
2026-08-16 02:04:48 -07:00
parent df55ede5bf
commit 04376b8452
2 changed files with 39 additions and 0 deletions
+1
View File
@@ -0,0 +1 @@
icl/
+38
View File
@@ -0,0 +1,38 @@
# Maintainer: Alexander Rosenberg <zanderpkg at pm dot me>
_pkgname='icl'
pkgname=cl-$_pkgname-git
pkgver=v1.23.13.0.g17fc7a4
pkgrel=1
pkgdesc='Interactive Common Lisp: an enhanced REPL'
url='https://github.com/atgreen/icl'
arch=('any')
license=('MIT')
provides=('cl-icl')
depends=('sbcl')
makedepends=('ocicl')
source=('git+https://github.com/atgreen/icl.git')
sha256sums=('SKIP')
pkgver(){
cd "icl"
git describe --tags --long | sed 's#-#.#g'
}
prepare() {
cd icl
ocicl install
}
build() {
cd icl
make
}
package() {
cd icl
install -m 0644 -Dt "$pkgdir/usr/share/emacs/site-lisp/icl/" \
emacs/icl.el emacs/icl-autoloads.el
install -Dt "$pkgdir/usr/bin/" icl
install -Dt "$pkgdir/usr/share/man/man1/" man/icl.1
}