outlook-for-linux
LOW
maintainer itonia149
0 votes
scanned 2026-08-25 19:27:42.084104
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: itonia149 <itonia149@users.noreply.github.com>
2
# Contributor: itonia149 <itonia149@users.noreply.github.com>
3
pkgname=outlook-for-linux
4
pkgver=0.1.1
5
pkgrel=1
6
pkgdesc="Unofficial Electron wrapper for Microsoft Outlook Web"
7
arch=('any')
8
url="https://github.com/itonia149/outlook-for-linux"
9
license=('MIT')
10
depends=('electron' 'hicolor-icon-theme')
11
source=("$pkgname-$pkgver.tar.gz::https://github.com/itonia149/outlook-for-linux/archive/refs/tags/v$pkgver.tar.gz")
12
sha256sums=('68276bff7d729eba052adce9090f0f6698ae0506184e6dea2875e4428e060d39')
13
14
package() {
15
cd "$srcdir/$pkgname-$pkgver"
16
17
# Application sources (no node_modules: electron comes from the system dep)
18
install -d "$pkgdir/usr/lib/$pkgname"
19
cp -r src assets "$pkgdir/usr/lib/$pkgname/"
20
install -Dm644 package.json "$pkgdir/usr/lib/$pkgname/package.json"
21
22
# Launcher script running the app with system electron
23
install -d "$pkgdir/usr/bin"
24
cat > "$pkgdir/usr/bin/$pkgname" <<EOF
25
#!/bin/sh
26
exec electron /usr/lib/$pkgname "\$@"
27
EOF
28
chmod 755 "$pkgdir/usr/bin/$pkgname"
29
30
# Desktop entry (deliberately no MimeType= handler: not replacing the user's mail client)
31
install -Dm644 packaging/$pkgname.desktop \
32
"$pkgdir/usr/share/applications/$pkgname.desktop"
33
34
# Icons into hicolor
35
for size in 16 32 48 64 128 256 512; do
36
install -Dm644 "assets/icons/$pkgname-$size.png" \
37
"$pkgdir/usr/share/icons/hicolor/${size}x${size}/apps/$pkgname.png"
38
done
39
install -Dm644 assets/$pkgname.svg \
40
"$pkgdir/usr/share/icons/hicolor/scalable/apps/$pkgname.svg"
41
install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
42
}
43
Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-08-25 19:27:42 | Low | 1 |