-
Notifications
You must be signed in to change notification settings - Fork 60
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
okay
committed
Jan 27, 2022
1 parent
293626f
commit d0f3f8e
Showing
2 changed files
with
16 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
# Copyright (c) 2021 The Toltec Contributors | ||
# SPDX-License-Identifier: MIT | ||
|
||
pkgnames=(bufshot dumbskull genie harmony iago lamp mines nao remux simple wordlet) | ||
pkgnames=(bufshot dumbskull genie harmony iago lamp mines nao remux rpncalc simple wordlet) | ||
timestamp=2021-01-27T07:18:10Z | ||
maintainer="raisjn <[email protected]>" | ||
license=MIT | ||
|
@@ -176,6 +176,20 @@ remux() { | |
} | ||
} | ||
|
||
rpncalc() { | ||
pkgdesc="RPN Calculator" | ||
url="https://rmkit.dev/apps/rpncalc" | ||
pkgver=0.0.1-1 | ||
section="math" | ||
|
||
package() { | ||
install -D -m 755 "$srcdir"/src/build/rpncalc "$pkgdir"/opt/bin/rpncalc | ||
install -D -m 644 "$srcdir"/src/rpncalc/rpncalc.draft "$pkgdir"/opt/etc/draft/rpncalc.draft | ||
install -D -m 644 "$srcdir"/src/rpncalc/calculator.png "$pkgdir"/opt/etc/draft/icons/calculator.png | ||
} | ||
|
||
} | ||
|
||
simple() { | ||
pkgdesc="Simple app script for writing scripted applications" | ||
url="https://rmkit.dev/apps/sas" | ||
|