Skip to content

Commit

Permalink
Update yaft and tilem to 0.1.2 (#913)
Browse files Browse the repository at this point in the history
* Update yaft to 0.1.2

* Update tilem to 0.1.2
  • Loading branch information
Eeems authored Sep 14, 2024
1 parent dda27e2 commit 31a0bbd
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 18 deletions.
23 changes: 14 additions & 9 deletions package/tilem/package
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,15 @@
pkgnames=(tilem)
pkgdesc="TI-84+ calculator emulator"
url=https://github.com/timower/rM2-stuff/tree/master/apps/tilem
_tag=0.1.1
_tag=0.1.2
pkgver=${_tag}-1
timestamp=2023-11-25T20:49:48Z
timestamp=2024-05-29T17:05:56Z
maintainer="Mattéo Delabre <[email protected]>"
license=GPL-3.0
section="utils"
image=base:v3.1
installdepends=(display)
flags=(nostrip)

source=()
sha256sums=()
Expand All @@ -31,14 +32,18 @@ prepare() {
}

build() {
mkdir build
cd "$srcdir"
mkdir install
cd build
cmake -DCMAKE_TOOLCHAIN_FILE="/usr/share/cmake/$CHOST.cmake" \
-DCMAKE_INSTALL_PREFIX="../install" -DCMAKE_BUILD_TYPE=Release ../tilem
cd apps/tilem
make
make install
cd tilem
cmake --preset release-toltec
cmake \
--build build/release-toltec \
--target tilem
cmake \
--install build/release-toltec \
--prefix ../install \
--component tilem \
--strip
}

package() {
Expand Down
23 changes: 14 additions & 9 deletions package/yaft/package
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,15 @@
pkgnames=(yaft)
pkgdesc="Yet another framebuffer terminal"
url=https://github.com/timower/rM2-stuff/tree/master/apps/yaft
_tag=0.1.1
_tag=0.1.2
pkgver=${_tag}-1
timestamp=2023-11-25T20:49:48Z
timestamp=2024-05-29T17:05:56Z
maintainer="Mattéo Delabre <[email protected]>"
license=GPL-3.0
section="admin"
image=base:v3.1
installdepends=(display terminfo)
flags=(nostrip)

source=()
sha256sums=()
Expand All @@ -31,14 +32,18 @@ prepare() {
}

build() {
mkdir build
cd "$srcdir"
mkdir install
cd build
cmake -DCMAKE_TOOLCHAIN_FILE="/usr/share/cmake/$CHOST.cmake" \
-DCMAKE_INSTALL_PREFIX="../install" -DCMAKE_BUILD_TYPE=Release ../yaft
cd apps/yaft
make
make install
cd yaft
cmake --preset release-toltec
cmake \
--build build/release-toltec \
--target yaft
cmake \
--install build/release-toltec \
--prefix ../install \
--component yaft \
--strip
}

package() {
Expand Down

0 comments on commit 31a0bbd

Please sign in to comment.