mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-24 19:55:26 +03:00
33 lines
812 B
Text
33 lines
812 B
Text
# Contributor: Daniel Sabogal <dsabogalcc@gmail.com>
|
|
# Maintainer: Jakub Jirutka <jakub@jirutka.cz>
|
|
pkgname=libvterm
|
|
pkgver=0.3.1
|
|
pkgrel=0
|
|
pkgdesc="Abstract library implementation of a VT220/xterm/ECMA-48 terminal emulator"
|
|
url="https://www.leonerd.org.uk/code/libvterm/"
|
|
arch="all"
|
|
license="MIT"
|
|
makedepends="libtool perl"
|
|
subpackages="$pkgname-dev"
|
|
source="$pkgname-$pkgver.tar.gz::https://www.leonerd.org.uk/code/libvterm/libvterm-$pkgver.tar.gz"
|
|
|
|
# secfixes:
|
|
# 0.1.4-r0:
|
|
# - CVE-2018-20786
|
|
|
|
build() {
|
|
make PREFIX=/usr
|
|
}
|
|
|
|
check() {
|
|
make test
|
|
}
|
|
|
|
package() {
|
|
make PREFIX=/usr DESTDIR="$pkgdir/" install
|
|
rm -f "$pkgdir"/usr/lib/*.a
|
|
}
|
|
|
|
sha512sums="
|
|
1f4bbee8847a9c8cfab3831a3512b866eb0f90f7d3600c4583d2e1eac18458f21bf5ca4fe4b067b27920a04aa7eac5dd2d4a62f6b7ebd56a417fed60d421853d libvterm-0.3.1.tar.gz
|
|
"
|