This commit is contained in:
Dirk Hörner
2017-10-25 12:16:21 +02:00
parent d51c932e82
commit fb2534efa0

27
tio/PKGBUILD Normal file
View File

@@ -0,0 +1,27 @@
pkgname=tio
pkgver=1.25
pkgrel=1
pkgdesc="A simple TTY terminal I/O application"
arch=('i686' 'x86_64')
url="https://tio.github.io/"
license=('GPL')
source=("https://github.com/tio/${pkgname}/releases/download/v${pkgver}/${pkgname}-${pkgver}.tar.xz"{,.asc})
sha256sums=('050de858c20d316af6ff3514da8c7b36cd9233301aa4fbe8b8e4f380167dfdb9'
'SKIP')
validpgpkeys=('101BAC1C15B216DBE07A3EEA2BDB4A0944FA00B1') # Martin Lund
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
./configure \
--prefix=/usr \
--sysconfdir=/etc
make
}
package() {
cd "${srcdir}/${pkgname}-${pkgver}"
make DESTDIR="${pkgdir}" install
}