Skip to content

Instantly share code, notes, and snippets.

@jledet
Created February 14, 2022 08:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jledet/6cc23bf03caed8217cd6ce95aaa68d81 to your computer and use it in GitHub Desktop.
Save jledet/6cc23bf03caed8217cd6ce95aaa68d81 to your computer and use it in GitHub Desktop.
tio v1.33 pkgbuild
# Maintainer: Martin Hundebøll <martin@hundeboll.net>
pkgname=tio
pkgver=1.33
pkgrel=1
pkgdesc="The simple TTY terminal I/O application"
url="http://tio.github.io/"
makedepends=('meson')
arch=('x86_64' 'i686')
license=('GPLv2')
source=("https://github.com/tio/tio/releases/download/v$pkgver/$pkgname-$pkgver.tar.xz")
sha256sums=('f5aec6c7ee68a3fa2a6939a4cdc6c2b6fc74e3c33bc408c22ae787468b9bef1a')
build() {
arch-meson "$srcdir/$pkgname-$pkgver" build
meson compile -C build
}
package() {
meson install -C build --destdir "$pkgdir"
}
# vim:set ts=2 sw=2 et:
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment