2022-12-28 17:13:22 +00:00
|
|
|
# Maintainer: Lucien Cartier-Tilet <lucien@phundrak.com>
|
|
|
|
|
|
|
|
_pkgname=eask
|
|
|
|
_orgname=emacs-eask
|
|
|
|
_nodepkgname=cli
|
|
|
|
pkgname="nodejs-${_pkgname}"
|
2023-03-10 14:13:16 +00:00
|
|
|
pkgver=0.8.0
|
2022-12-28 17:13:22 +00:00
|
|
|
pkgrel=1
|
|
|
|
pkgdesc="Command-line tool for building and testing Emacs Lisp packages"
|
|
|
|
url="https://github.com/${_orgname}/${_pkgname}"
|
|
|
|
license=("GPL3")
|
|
|
|
arch=("any")
|
|
|
|
depends=("nodejs")
|
|
|
|
makedepends=("npm")
|
2023-01-05 13:13:40 +00:00
|
|
|
source=("https://registry.npmjs.org/@${_orgname}/${_nodepkgname}/-/${_nodepkgname}-${pkgver}.tgz")
|
2023-03-10 14:13:16 +00:00
|
|
|
sha256sums=('deac9ac83c013ef05339cb71c552a71fdbc3b3dd0387031c884bbd9b10fcf4b0')
|
2022-12-28 17:13:22 +00:00
|
|
|
noextract=("$_pkgname-$pkgver.tgz")
|
|
|
|
|
|
|
|
prepare() {
|
|
|
|
tar xf "$_nodepkgname-$pkgver.tgz" package/COPYING
|
|
|
|
}
|
|
|
|
|
|
|
|
package() {
|
|
|
|
npm i --location=global --cache "${srcdir}/npm-cache" --prefix "$pkgdir/usr" "$srcdir/$_nodepkgname-$pkgver.tgz"
|
|
|
|
install -Dm644 package/COPYING "$pkgdir/usr/share/licenses/$_pkgname/COPYING"
|
|
|
|
# install -Dm644 <(nps eask) "$pkgdir/usr/share/bash-completion/completions/$_pkgname"
|
|
|
|
}
|