babel-eslint-parser/PKGBUILD

30 lines
1002 B
Bash
Raw Normal View History

2021-11-14 15:06:58 +00:00
# Maintainer: Knut Ahlers <knut at ahlers dot me>
pkgname=babel-eslint-plugin
2022-09-14 15:34:11 +00:00
pkgver=7.19.1
2021-11-14 15:06:58 +00:00
pkgrel=1
pkgdesc='@babel/eslint-parser allows you to lint ALL valid Babel code with the fantastic ESLint'
arch=('any')
url='https://github.com/babel/babel'
license=('MIT')
depends=('eslint')
makedepends=('npm')
source=("https://registry.npmjs.org/@babel/eslint-parser/-/eslint-parser-${pkgver}.tgz")
2022-09-14 15:34:11 +00:00
sha256sums=('f356f841a8656485cd580b013b321a2816430adb1be8ce605f65b3d5188a1437')
2021-11-14 15:06:58 +00:00
noextract=("eslint-parser-${pkgver}.tgz")
package() {
install -dm 755 "$pkgdir/usr/lib"
npm install -g --prefix "$pkgdir"/usr "$srcdir"/eslint-parser-${pkgver}.tgz
# Fix permissions
find "$pkgdir/usr" -type d -exec chmod 755 '{}' +
# Remove files that conflict with `eslint`:
rm -rf "$pkgdir/usr/lib/node_modules/eslint"
rm -rf "$pkgdir/usr/bin"
install -dm755 "${pkgdir}/usr/share/licenses/${pkgname}"
ln -s ../../../lib/node_modules/@babel/eslint-parser/LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
}