ftpocket
maintainer navid079
· 0 votes
· scanned 2026-08-03 00:08:14.047287
LOW
View on AUR ↗
Why flagged
The package builds from the project's own git repository, uses 'npm ci' for dependency resolution, and constructs an Electron app from source; the only concern is the unverifiable 'SKIP' checksum, but the source is directly from the project's official GitHub, making it a low-risk, typical AUR package for a desktop application.
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.
LOW
AI review
llm_review
An AI model (qwen/qwen3-235b-a22b-2507) reviewed this and agrees it is LOW (confidence 90%): The package builds from the project's own git repository, uses 'npm ci' for dependency resolution, and constructs an Electron app from source; the only concern is the unverifiable 'SKIP' checksum, but the source is directly from the project's official GitHub, making it a low-risk, typical AUR package for a desktop application.
PKGBUILD
1
pkgname=ftpocket
2
pkgver=1.2.1
3
pkgrel=1
4
pkgdesc='A secure FTP, FTPS, and SFTP desktop client'
5
arch=('x86_64')
6
url='https://github.com/Navid079/ftpocket'
7
license=('MIT')
8
depends=('gtk3' 'libnotify' 'nss' 'libxss' 'libxtst' 'xdg-utils' 'at-spi2-core' 'libsecret')
9
makedepends=('git' 'nodejs' 'npm' 'python' 'make' 'gcc' 'pkgconf')
10
source=("git+https://github.com/Navid079/ftpocket.git#tag=v${pkgver}")
11
sha256sums=('SKIP')
12
options=('!strip')
13
14
prepare() {
15
cd "$srcdir/$pkgname"
16
npm ci --no-audit --no-fund
17
}
18
19
build() {
20
cd "$srcdir/$pkgname"
21
npm run build
22
./node_modules/.bin/electron-builder --linux dir --x64
23
}
24
25
package() {
26
cd "$srcdir/$pkgname"
27
install -dm755 "$pkgdir/opt/FTPocket"
28
cp -a dist/linux-unpacked/. "$pkgdir/opt/FTPocket/"
29
install -dm755 "$pkgdir/usr/bin"
30
ln -s '/opt/FTPocket/ftpocket' "$pkgdir/usr/bin/ftpocket"
31
install -Dm644 scripts/arch/ftpocket.desktop "$pkgdir/usr/share/applications/ftpocket.desktop"
32
install -Dm644 build/icon.png "$pkgdir/usr/share/icons/hicolor/512x512/apps/ftpocket.png"
33
install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
34
}
35
Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-08-03 00:08:14 | LOW | 2 |
| 2026-08-02 00:16:08 | LOW | 2 |
| 2026-08-01 00:11:18 | LOW | 2 |
| 2026-07-31 00:14:10 | LOW | 2 |
| 2026-07-30 00:17:23 | LOW | 2 |
| 2026-07-29 13:11:48 | LOW | 2 |