-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
On branch main - Changes to be committed: - new file: .SRCINFO - new file: PKGBUILD
- Loading branch information
0 parents
commit dfaf5d1
Showing
2 changed files
with
131 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
pkgbase = nx | ||
pkgdesc = A next generation build system with monorepo support and powerful integrations. | ||
pkgver = 14.5.10 | ||
pkgrel = 1 | ||
url = https://blog.nrwl.io/nx/home | ||
arch = any | ||
license = MIT | ||
makedepends = jq | ||
makedepends = npm | ||
depends = nodejs | ||
noextract = nx-14.5.10.tgz | ||
source = https://registry.npmjs.org/nx/-/nx-14.5.10.tgz | ||
sha512sums = 76a895fb3637da4f7c99f2854e0890c9877d1d8666075ce8263ea0627884baacece822a9f194a97910da55047147ac0432f5bd3124c0f64060f2c27bf16fcd66 | ||
|
||
pkgname = nx |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,116 @@ | ||
#!/bin/bash | ||
|
||
# Based on original PKGBUILD by Felix Yan <[email protected]> | ||
|
||
# Disable various shellcheck rules that produce false positives in this file. | ||
# Repository rules should be added to the .shellcheckrc file located in the | ||
# repository root directory, see https://github.com/koalaman/shellcheck/wiki | ||
# and https://archiv8.github.io for further information. | ||
# shellcheck disable=SC2034,SC2154 | ||
# [ToDo]: Add files: User documentation | ||
# [ToDo]: Add files: Tooling | ||
# [FixMe]: Namcap warnings and errors | ||
|
||
# Maintainer: Ross Clark <https://github.com/Archiv8/nx/discussions> | ||
# Contributor: Ross Clark <https://github.com/Archiv8/nx/discussions> | ||
|
||
# pkgbase= | ||
pkgname="nx" | ||
pkgver=14.5.10 | ||
pkgrel=1 | ||
# epoch= | ||
pkgdesc="A next generation build system with monorepo support and powerful integrations." | ||
arch=( | ||
"any" | ||
) | ||
url="https://blog.nrwl.io/nx/home" | ||
license=( | ||
"MIT" | ||
) | ||
# groups=() | ||
depends=( | ||
"nodejs" | ||
) | ||
# optdepends=() | ||
makedepends=( | ||
"jq" | ||
"npm" | ||
) | ||
# checkdepends=() | ||
# provides=() | ||
# conflicts=() | ||
# replaces=() | ||
# backup=() | ||
# options=() | ||
# install= | ||
# changelog="CHANGELOG.md" | ||
source=( | ||
"https://registry.npmjs.org/${pkgname}/-/${pkgname}-${pkgver}.tgz" | ||
# "CC-by-SA-v4.md" | ||
# "CHANGELOG.md" | ||
# "ISSUES.md" | ||
# "LICENSE" | ||
# "LICENSE.md" | ||
# "MIT.md" | ||
# "README.md" | ||
) | ||
noextract=( | ||
"${pkgname}-${pkgver}.tgz" | ||
) | ||
# validpgpkeys=() | ||
sha512sums=( | ||
"76a895fb3637da4f7c99f2854e0890c9877d1d8666075ce8263ea0627884baacece822a9f194a97910da55047147ac0432f5bd3124c0f64060f2c27bf16fcd66" | ||
) | ||
|
||
# prepare () {} | ||
|
||
# build() {} | ||
|
||
# check() {} | ||
|
||
package() { | ||
# [Fixes]: Caching in user's home directory. Ensure cache is set when install is run in order to avoid littering user's home directory | ||
printf "\e[1;32m==>\e[0m \e[38;5;248mBuilding nodejs package... \e[0m\n" | ||
printf " This may take some time depending on the size of the package and number of dependencies to download... \e[0m\n" | ||
npm install --cache "$srcdir/npm-cache" -g --user root --prefix "$pkgdir"/usr "$srcdir"/${pkgname}-${pkgver}.tgz | ||
|
||
# [Fixes]: Incorrect user / group as highlighted by namcap | ||
printf "\e[1;32m==>\e[0m \e[38;5;248mCorrecting possible ownership issues\e[0m\n" | ||
while IFS= read -r fsitem; do | ||
chown -h root:root "$fsitem" | ||
done < <(find "$pkgdir" -not -group root -not -user root) | ||
|
||
# [Fixes]: Non-deterministic race in npm gives 777 permissions to random directories. | ||
# See https://github.com/npm/npm/issues/9359 for details. | ||
printf "\e[1;32m==>\e[0m \e[38;5;248mCorrecting possible permission issues on directories\e[0m\n" | ||
find "$pkgdir/usr" -type d -exec chmod 755 '{}' + | ||
|
||
# [Fixes]: References to $pkgdir | ||
printf "\e[1;32m==>\e[0m \e[38;5;248mRemoving references to \$pkgdir\e[0m\n" | ||
find "$pkgdir" -type f -name package.json -print0 | xargs -0 sed -i "/_where/d" | ||
|
||
# [Fixes]: References to $srcdir | ||
printf "\e[1;32m==>\e[0m \e[38;5;248mRemoving references to \$srcdir \e[0m\n" | ||
local tmppackage="$(mktemp)" | ||
local pkgjson="$pkgdir/usr/lib/node_modules/${pkgname}/package.json" | ||
jq '.|=with_entries(select(.key|test("_.+")|not))' "$pkgjson" > "$tmppackage" | ||
mv "$tmppackage" "$pkgjson" | ||
chmod 644 "$pkgjson" | ||
|
||
rm -rf "$pkgdir/usr/lib/node_modules/root" | ||
|
||
# Install license | ||
# install -dm755 "${pkgdir}/usr/share/licenses/${pkgname}" | ||
# ln -s ../../../lib/node_modules/eslint/LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" | ||
|
||
# Create Archiv8 documentation folder | ||
# install -dvm 755 "$pkgdir/usr/share/doc/$pkgname/packaging/" | ||
|
||
# Install Archiv8 Documentation | ||
# install -Dm 644 "CC-by-SA-v4.md" "$pkgdir/usr/share/licenses/$pkgname/packaging/CC-by-SA-v4.md" | ||
# install -Dm 644 "CHANGELOG.md" "$pkgdir/usr/share/doc/$pkgname/packaging/CHANGELOG.md" | ||
# install -Dm 644 "ISSUES.md" "$pkgdir/usr/share/doc/$pkgname/packaging/ISSUES.md" | ||
# install -Dm 644 "LICENSE.md" "$pkgdir/usr/share/licenses/$pkgname/packaging/LICENSE.md" | ||
# install -Dm 644 "MIT.md" "$pkgdir/usr/share/licenses/$pkgname/packaging/MIT.md" | ||
# install -Dm 644 "README.md" "$pkgdir/usr/share/doc/$pkgname/packaging/README.md" | ||
} |