supermemory-server
LOW
maintainer Hemular
1 votes
scanned 2026-09-25 09:11:17.574095
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: Phillip Dykman <phil.d324@gmail.com>
2
pkgname=supermemory-server
3
# renovate: datasource=github-releases depName=supermemoryai/supermemory extractVersion=^server-v(?<version>.+)$
4
pkgver=0.0.8
5
pkgrel=1
6
pkgdesc="Self-hosted AI memory server for managing and retrieving information"
7
arch=('x86_64' 'aarch64')
8
url="https://github.com/supermemoryai/supermemory"
9
license=('AGPL-3.0-or-later')
10
depends=()
11
makedepends=()
12
install=supermemory.install
13
options=(!strip)
14
15
source=('supermemory-server.service'
16
'supermemory.install')
17
source_x86_64=("https://github.com/supermemoryai/supermemory/releases/download/server-v${pkgver}/supermemory-server-linux-x64")
18
source_aarch64=("https://github.com/supermemoryai/supermemory/releases/download/server-v${pkgver}/supermemory-server-linux-arm64")
19
20
sha256sums=('9c888af5610069b19b84922e1456abaa54332a4b5513f24c2bf8fcfbc966a677'
21
'ad3736bb35f7e8daed367baa5f87300afc53886e4dc0e6192725e00857719ca8')
22
sha256sums_x86_64=('87f32433d0179be80bb9d8a1bafbac65af4128324342a27ecb8bd1a77b5506f3')
23
sha256sums_aarch64=('eeb9e62a8bf59646bd799a05d1a2981b945413a03640c3a39f4f267ad2d2bf37')
24
25
package() {
26
# Detect binary filename based on architecture
27
local binname
28
case "${CARCH}" in
29
x86_64) binname="supermemory-server-linux-x64" ;;
30
aarch64) binname="supermemory-server-linux-arm64" ;;
31
*) error "Unsupported architecture: ${CARCH}" ;;
32
esac
33
34
msg2 "Installing binary: ${binname}"
35
[ -f "${srcdir}/${binname}" ] || error "Binary not found: ${srcdir}/${binname}"
36
37
# Install binary
38
install -Dm755 "${srcdir}/${binname}" "${pkgdir}/usr/bin/supermemory-server"
39
40
# Install systemd service
41
install -Dm644 "${srcdir}/supermemory-server.service" "${pkgdir}/usr/lib/systemd/user/supermemory-server.service"
42
}
43
Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-09-25 09:11:17 | Low | 1 |