mirror of
https://github.com/luzifer-aur/eslint-plugin-vue.git
synced 2024-11-09 14:00:04 +00:00
24 lines
727 B
Bash
24 lines
727 B
Bash
# Maintainer: Andrew Steinke <rkcf@rkcf.me>
|
|
|
|
pkgname=eslint-plugin-vue
|
|
pkgver=6.2.2
|
|
pkgrel=1
|
|
pkgdesc='ESLint Plugin for Vue.js'
|
|
arch=('any')
|
|
url='https://github.com/vuejs/eslint-plugin-vue'
|
|
license=('MIT')
|
|
depends=('eslint')
|
|
makedepends=('npm')
|
|
source=(http://registry.npmjs.org/$pkgname/-/$pkgname-$pkgver.tgz)
|
|
noextract=($pkgname-$pkgver.tgz)
|
|
md5sums=('c885ad83ba3848cb407d51ec42f3c73b')
|
|
|
|
package() {
|
|
npm install --verbose -g --user root --prefix "$pkgdir"/usr "$srcdir"/$pkgname-$pkgver.tgz
|
|
|
|
# Fix permissions
|
|
find "$pkgdir/usr" -type d -exec chmod 755 '{}' +
|
|
|
|
install -dm755 "${pkgdir}/usr/share/licenses/${pkgname}"
|
|
ln -s ../../../lib/node_modules/$pkgname/LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
|
|
}
|