Skip to content

Commit 3c77a06

Browse files
authored
Merge branch 'testing' into 3.5.2
2 parents c82d680 + a7d14ac commit 3c77a06

File tree

3 files changed

+48
-0
lines changed

3 files changed

+48
-0
lines changed

package/rempack/package

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
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+
}

package/rempack/rempack.draft

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
name=rempack
2+
desc=User firendly package manager
3+
call=/opt/bin/rempack
4+
term=killall rempack

package/rempack/rempack.oxide

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"displayName": "rempack",
3+
"description": "A friendly package manager",
4+
"bin": "/opt/bin/rempack",
5+
"type": "foreground",
6+
"permissions": ["permissions", "apps", "system"]
7+
}

0 commit comments

Comments
 (0)