summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: a2c11601ba68831d992b55919cf8d9496eaf8341 (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
# Maintainer: Dario Giovannetti <info@dariogiovannetti.net>

pkgname=report-todo
pkgver=1.0.1
pkgrel=1
pkgdesc="Parse and report TODO, FIXME, BUG etc. comments in source code."
arch=('any')
url="https://github.com/kynikos/report-todo"
license=('MIT')
depends=('nodejs')
makedepends=('npm')
source=("https://registry.npmjs.org/${pkgname}/-/${pkgname}-${pkgver}.tgz")
noextract=("${pkgname}-${pkgver}.tgz")
sha256sums=('99e3799da521cd307bb02f4dd3767ecdec4409ef8ddce7f16c6af63f1ee7a4a5')

package() {
  npm install -g --only=production --user root --prefix "${pkgdir}/usr" \
    "${srcdir}/${pkgname}-${pkgver}.tgz" --cache "${srcdir}/npm-cache"

  # Non-deterministic race in npm gives 777 permissions to random directories
  # https://github.com/npm/npm/issues/9359
  find "${pkgdir}/usr" -type d -exec chmod 755 {} +

  # npm gives ownership of all files to build user
  # https://bugs.archlinux.org/task/63396
  chown -R root:root "${pkgdir}"

  install -dm755 "${pkgdir}/usr/share/licenses/${pkgname}"
  ln -s "../../../lib/node_modules/${pkgname}/LICENSE" \
    "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
}