mirror of
https://github.com/archlinux/aur.git
synced 2026-03-14 23:16:48 +01:00
46 lines
1.6 KiB
Bash
46 lines
1.6 KiB
Bash
# Maintainer: YOUR NAME <your@email.com>
|
|
|
|
_npmname=@mattfillipe/tobby
|
|
|
|
pkgname=tobby
|
|
pkgver=0.1.17
|
|
pkgrel=1
|
|
pkgdesc="The Terminal Obby — a modern IRC client for the terminal"
|
|
arch=('any')
|
|
url="https://github.com/ObsidianIRC/tobby"
|
|
license=('MIT')
|
|
# nodejs runs the bin/tobby.js shim; bun runs the actual bundled app
|
|
depends=('nodejs' 'bun')
|
|
makedepends=('npm' 'jq')
|
|
provides=('tobby')
|
|
conflicts=('tobby-bin')
|
|
# Fetch the tarball directly from the npm registry
|
|
# Scoped packages use %40 for @ in the URL path
|
|
source=("mattfillipe-tobby-${pkgver}.tgz::https://registry.npmjs.org/@mattfillipe/tobby/-/tobby-${pkgver}.tgz")
|
|
noextract=("mattfillipe-tobby-${pkgver}.tgz")
|
|
sha256sums=('56d7698f42a362ef1f6a167a6904ca5164f544dac1a4462a93d7e02bd6af299e')
|
|
options=('!strip')
|
|
|
|
package() {
|
|
npm install -g \
|
|
--prefix "${pkgdir}/usr" \
|
|
--cache "${srcdir}/npm-cache" \
|
|
"${srcdir}/mattfillipe-tobby-${pkgver}.tgz"
|
|
|
|
# Fix directory permissions (npm sometimes creates 700 dirs)
|
|
find "${pkgdir}/usr" -type d -exec chmod 755 {} +
|
|
|
|
# Strip npm-embedded absolute build paths from package.json files
|
|
find "${pkgdir}" -type f -name package.json -exec sed -i '/_where/d' {} +
|
|
|
|
local pkgjson="${pkgdir}/usr/lib/node_modules/@mattfillipe/tobby/package.json"
|
|
local tmppackage
|
|
tmppackage="$(mktemp)"
|
|
jq '.|=with_entries(select(.key|test("_.+")|not))' \
|
|
"${pkgjson}" > "${tmppackage}"
|
|
mv "${tmppackage}" "${pkgjson}"
|
|
chmod 644 "${pkgjson}"
|
|
|
|
install -Dm644 "${srcdir}/package/LICENSE" \
|
|
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" 2>/dev/null || true
|
|
}
|