blob: c7e9a4c61e8fdf332087b17d7b5e9e3faf5f56aa (
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
|
# Maintainer: Miroslav Jarý <mira.jary@gmail.com>
_npmname=gitmoji-cli
pkgname=nodejs-${_npmname}
pkgver=9.5.0
pkgrel=1
pkgdesc='A gitmoji interactive client for using gitmojis on commit messages'
arch=('any')
url='https://gitmoji.carloscuesta.me/'
license=('MIT')
depends=('nodejs>=18')
makedepends=('npm')
optdepends=('noto-fonts-emoji: emojis'
'ttf-symbola: emojis'
'ttf-joypixels: emojis'
'ttf-twemoji-color: emojis')
source=("https://registry.npmjs.org/${_npmname}/-/${_npmname}-${pkgver}.tgz")
sha256sums=('b9c89644fac844f521afcdc2b31e57da7ac7e123df92d16c4fdf79190622a5b4')
noextract=("${source[@]##*/}")
prepare() {
# Extract package/LICENSE
tar -zxvf "${source[@]##*/}" --directory "${srcdir}" "package/LICENSE"
}
package() {
npm install -g --cache "${srcdir}/npm-cache" --prefix "${pkgdir}/usr" "${source[@]##*/}"
# Installing license file
install -Dm644 "${srcdir}/package/LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
# Non-deterministic race in npm gives 777 permissions to random directories.
# See https://github.com/npm/npm/issues/9359 for details.
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}"
# Remove references to $pkgdir in _where attributes
find "${pkgdir}" -name package.json -print0 | xargs -0 sed -i -e '/_where/d'
}
|