blob: faf8b583468caf7013ea54d07bb65ec0e3318fc2 (
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
# Maintainer: Claudia Pellegrino <aur ät cpellegrino.de>
pkgname=patch-asar
pkgver=0.5.5
# The upstream author doesn’t tag Git commits for their npm releases.
# We identify the Git commit corresponding to the version by comparing
# its tree object to the code in the npm package file.
# See also: https://www.npmjs.com/package/patch-asar
_commit=e69bb6339d444d723d7ed3ee79e439adf4778e30
pkgrel=2
pkgdesc='Patch .asar archives more easily'
arch=('any')
url='https://github.com/L1lith/Patch-Asar'
license=('MIT') # source: https://www.npmjs.com/package/patch-asar
depends=('nodejs')
makedepends=('jq' 'moreutils' 'npm')
options=('!strip')
source=(
"${pkgname}-${pkgver}.tar.gz::https://github.com/L1lith/Patch-Asar/archive/${_commit}.tar.gz"
'github-pr-4.patch'
'upstream-license.txt'
)
sha512sums=(
'4cdf385422f611383da2259129daa11ff90dacfdb96d5c489a43c41a4f3fb66924faacf34fa2c11021570251109a1e666d73b991b53060a1ae2a08744ad59114'
'142b7aa34a825705caa513942ababc43600b487ce81e246fe9448fe5d672c69e149d209bbb13a0b33845aab9f205edf6e0faf09f0f80bc2bc01e4cb7975e9bf3'
'5f57972b7ef5e0b9214260af2b0a40bcd9e565340cbc57140bce5f102ad988d2004935102d1f2d239b3fec32decb158b0e01ef207f75476a4125caccb4d6d716'
)
prepare() {
cd "${srcdir}/Patch-Asar-${_commit}"
# Remove this patch once the upstream author has merged PR #4 and
# included it in a stable release.
# See also: https://github.com/L1lith/Patch-Asar/pull/4
echo >&2 'Applying patch to add executable shim'
patch -p1 < "${srcdir}/github-pr-4.patch"
}
package() {
echo >&2 'Packaging the license'
install -D -m 644 -T "${srcdir}/upstream-license.txt" \
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" \
echo >&2 'Packaging README.md'
install -D -m 644 -t "${pkgdir}/usr/share/doc/${pkgname}" \
"${srcdir}/Patch-Asar-${_commit}/README.md"
echo >&2 'Building'
cd "${srcdir}/Patch-Asar-${_commit}"
/usr/bin/npm install -g --install-links --prefix "${pkgdir}/usr"
# npm gives ownership of ALL FILES to build user
# https://bugs.archlinux.org/task/63396
chown -R root:root "${pkgdir}"
}
|