Add cl-iterate 1.4.3
This commit is contained in:
parent
b2da0b46f7
commit
46967a991f
1 changed files with 28 additions and 0 deletions
28
cl-iterate/PKGBUILD
Normal file
28
cl-iterate/PKGBUILD
Normal file
|
@ -0,0 +1,28 @@
|
||||||
|
#
|
||||||
|
|
||||||
|
_name=iterate
|
||||||
|
pkgname=cl-$_name
|
||||||
|
pkgver=1.4.3
|
||||||
|
pkgrel=1
|
||||||
|
pkgdesc="iterate is an iteration construct for Common Lisp."
|
||||||
|
arch=('i686' 'x86_64')
|
||||||
|
url="http://common-lisp.net/project/iterate/"
|
||||||
|
license=('BSD')
|
||||||
|
depends=('common-lisp' 'cl-asdf')
|
||||||
|
source=("http://common-lisp.net/project/$_name/releases/$_name-$pkgver.tar.gz")
|
||||||
|
md5sums=('f7b554e02c37ec3b786c6ba413b3a2e6')
|
||||||
|
|
||||||
|
package()
|
||||||
|
{
|
||||||
|
local destination="$pkgdir"/usr/share/common-lisp/source/$_name
|
||||||
|
local source="$srcdir"/$_name-$pkgver
|
||||||
|
|
||||||
|
install -d "$destination"
|
||||||
|
install -d "$pkgdir"/etc/common-lisp/source-registry.conf.d/
|
||||||
|
|
||||||
|
install -m 644 "$source"/*.lisp "$destination"
|
||||||
|
install -m 644 "$source"/*.asd "$destination"
|
||||||
|
|
||||||
|
echo "(:directory \"/usr/share/common-lisp/source/$_name\")" \
|
||||||
|
> "$pkgdir"/etc/common-lisp/source-registry.conf.d/20-$_name.conf
|
||||||
|
}
|
Loading…
Reference in a new issue