File tree Expand file tree Collapse file tree 3 files changed +48
-0
lines changed Expand file tree Collapse file tree 3 files changed +48
-0
lines changed Original file line number Diff line number Diff line change
1
+ #! /usr/bin/env bash
2
+ # Copyright (c) 2020 The Toltec Contributors
3
+ # SPDX-License-Identifier: MIT
4
+
5
+ pkgnames=(rempack)
6
+ pkgdesc=" A user friendly package manager frontend for opkg"
7
+ archs=(rmall)
8
+ url=" https://github.com/rexxar-tc/rempack"
9
+ pkgver=1.1.4
10
+ timestamp=2025-03-09T21:13:27
11
+ section=admin
12
+ maintainer=
" Brant Martin <[email protected] >"
13
+ license=MIT
14
+ image=base:v3.1
15
+ installdepends=(display)
16
+ source=(
17
+ https://github.com/rexxar-tc/rempack/archive/refs/tags/1.1.4.zip
18
+ rempack.draft
19
+ rempack.oxide
20
+ )
21
+ sha256sums=(
22
+ b8d8c1f75269f9091b39e1e20afbcdc6e4c1f12d811682f36b759aa4f9955696
23
+ SKIP
24
+ SKIP
25
+ )
26
+ build () {
27
+ cd $srcdir
28
+ mkdir output
29
+ cmake -S . -B output --preset " Release Native"
30
+ cmake --build output --target rempack
31
+ }
32
+
33
+ package () {
34
+ install -D -m 755 " $srcdir " /output/rempack " $pkgdir " /opt/bin/rempack
35
+ install -D -m 644 " $srcdir " /rempack.draft " $pkgdir " /opt/etc/draft/rempack.draft
36
+ install -D -m 644 " $srcdir " /rempack.oxide " $pkgdir " /opt/usr/share/applications/rempack.oxide
37
+ }
Original file line number Diff line number Diff line change
1
+ name=rempack
2
+ desc=User firendly package manager
3
+ call=/opt/bin/rempack
4
+ term=killall rempack
Original file line number Diff line number Diff line change
1
+ {
2
+ "displayName": "rempack",
3
+ "description": "A friendly package manager",
4
+ "bin": "/opt/bin/rempack",
5
+ "type": "foreground",
6
+ "permissions": ["permissions", "apps", "system"]
7
+ }
You can’t perform that action at this time.
0 commit comments