neo-writing
LOW
maintainer nathanchere
0 votes
scanned 2026-09-27 03:16:18.279095
Why flagged
Uploaded within the last 14 days with 2 or fewer community votes — little peer review so far.
Triggered rules
Low
Few votes, recently uploaded
zero_votes_recent
Uploaded within the last 14 days with 2 or fewer community votes — little peer review so far.
PKGBUILD
1
# Maintainer: Nathan Chere <aur@nathanchere.com.au>
2
pkgname=neo-writing
3
_appname=neo
4
pkgver=0.8.1
5
pkgrel=1
6
pkgdesc="A distraction-free word processor for authors"
7
arch=('x86_64')
8
url="https://github.com/hughhowey/neo"
9
license=('MIT')
10
depends=('electron43')
11
makedepends=('git' 'npm')
12
source=("${_appname}::git+${url}.git#tag=v${pkgver}")
13
sha256sums=('df84f548b5b65ab4ecc6a1c796dd118094ab0f52abb162c6e3ecc154cb311348')
14
options=('!strip')
15
16
build() {
17
cd "$srcdir/$_appname"
18
npm ci --omit=dev --ignore-scripts --no-audit
19
}
20
21
package() {
22
cd "$srcdir/$_appname"
23
24
local _appdir="$pkgdir/usr/lib/$pkgname"
25
install -dm755 "$_appdir"
26
install -Dm644 package.json "$_appdir/package.json"
27
install -Dm644 *.js index.html styles.css "$_appdir/"
28
cp -a fonts node_modules "$_appdir/"
29
30
install -Dm755 /dev/stdin "$pkgdir/usr/bin/neo-writing" <<'EOF'
31
#!/bin/sh
32
exec /usr/bin/electron43 /usr/lib/neo-writing "$@"
33
EOF
34
install -Dm644 build/icon.png "$pkgdir/usr/share/icons/hicolor/1024x1024/apps/neo-writing.png"
35
install -Dm644 /dev/stdin "$pkgdir/usr/share/applications/neo-writing.desktop" <<'EOF'
36
[Desktop Entry]
37
Type=Application
38
Name=NEO
39
Comment=A distraction-free word processor for authors
40
Exec=neo-writing
41
Icon=neo-writing
42
Terminal=false
43
Categories=Office;WordProcessor;
44
EOF
45
install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
46
cp -a fonts/LICENSE-* "$pkgdir/usr/share/licenses/$pkgname/"
47
}
48
Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-09-27 03:16:18 | Low | 1 |