addpkg: cl-asdf-flv

This commit is contained in:
George Rawlinson 2022-05-12 21:14:10 +12:00
parent 13d23f8e94
commit b079e7bcbb
Signed by: grawlinson
GPG Key ID: E0959FEA8B550539
1 changed files with 51 additions and 0 deletions

51
cl-asdf-flv/PKGBUILD Normal file
View File

@ -0,0 +1,51 @@
# Maintainer: George Rawlinson <grawlinson@archlinux.org>
pkgname=cl-asdf-flv
_pkgname="${pkgname#cl-}"
pkgver=2.1
pkgrel=1
pkgdesc='cl-asdf extension to provide support for file-local variables'
arch=('any')
url='https://github.com/didierverna/asdf-flv'
license=('custom:FSFAP') #SPDX-ID: FSFAP
depends=('common-lisp' 'cl-asdf')
makedepends=('git' 'sbcl')
_commit='fc5b7399767ca35bfb420bbeb9e08494e441dc69'
source=("$pkgname::git+$url#commit=$_commit")
b2sums=('SKIP')
pkgver() {
cd "$pkgname"
git describe --tags | sed 's/^version-//'
}
prepare() {
cd "$pkgname"
# extract license
sed -n '/;; Copyright/,/;; without/p' asdf-flv.lisp | sed -e 's/^;; //g' > LICENSE
}
package() {
cd "$pkgname"
# create directories
install -vd \
"$pkgdir/usr/share/common-lisp/source/$_pkgname" \
"$pkgdir/usr/share/common-lisp/systems"
# library
install -vDm644 -t "$pkgdir/usr/share/common-lisp/source/$_pkgname" \
./*.{lisp,asd}
pushd "$pkgdir/usr/share/common-lisp/systems"
ln -s "../source/$_pkgname/net.didierverna.asdf-flv.asd" .
popd
# documentation
install -vDm644 -t "$pkgdir/usr/share/doc/$pkgname" README.md
# license
install -vDm644 -t "$pkgdir/usr/share/licenses/$pkgname" LICENSE
}