# Maintainer: Martin Hundebøll pkgname=tio pkgver=3.1 pkgrel=1 pkgdesc="The simple TTY terminal I/O application" url="https://tio.github.io/" arch=('x86_64' 'i686' 'arm' 'armv7h' 'armv6h' 'aarch64') license=('GPL-2.0-or-later') depends=('glibc' 'libinih' 'lua' 'glib2') optdepends=('bash-completion: bash completion support') makedepends=('meson') source=("https://github.com/tio/tio/releases/download/v$pkgver/$pkgname-$pkgver.tar.xz") sha256sums=('09a22f2c9b08bd45dcdf98ffed220e4b26fd07db30854d5439e3806dea9dfa7b') build() { cd "$srcdir/$pkgname-$pkgver" meson setup --prefix=/usr --buildtype=plain . build meson compile -C build } package() { cd "$srcdir/$pkgname-$pkgver" meson install -C build --destdir "$pkgdir" } # vim:set ts=2 sw=2 et: