blob: b20e698d95e501350e62dfb666121ab840ca333b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
# Maintainer: PY Chuang <pychuang@pm.me>
# Contributor: Arjun Nemani <nemaniarjun@gmail.com>
pkgname=textlint
pkgver=12.2.2
pkgrel=1
pkgdesc="The pluggable natural language linter for text and markdown."
arch=(any)
url="https://github.com/textlint/textlint/"
license=("MIT")
depends=("nodejs")
makedepends=("npm")
source=(https://registry.npmjs.org/$pkgname/-/$pkgname-$pkgver.tgz)
sha1sums=("995d46eb40ed82f0987df2e1bbb008763f328359")
package() {
cd $srcdir
# remove cache folder
if [[ -d npm-cache ]]; then rm -rf npm-cache; fi
# npm install with the local tarball
npm install \
--cache "${srcdir}/npm-cache" \
--omit=dev \
--omit=optional \
--no-audit \
-g \
--prefix "$pkgdir/usr" \
$pkgname-$pkgver.tgz
# change the destination of references
grep -Rl "$pkgdir" "$pkgdir" | xargs -r sed -i "s@${pkgdir}@@g"
grep -Rl "$srcdir" "$pkgdir" | xargs -r sed -i "s@\"${srcdir}.*\"@\"\"@g"
# change owner
chown -R root:root "${pkgdir}"
# to shut up namcap's warning, even though it's a MIT license
install -Dm644 "${srcdir}/package/LICENSE" -t "$pkgdir/usr/share/licenses/$pkgname"
# install README
install -Dm644 "${srcdir}/package/README.md" -t "$pkgdir/usr/share/doc/$pkgname"
}
|