aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLeo <thinkabit.ukim@gmail.com>2019-06-29 23:53:35 -0300
committerNatanael Copa <ncopa@alpinelinux.org>2019-07-17 08:30:11 +0000
commit0ca16137611fc44a07677b6ef15b0709deb45392 (patch)
treef2bf4f33a6b4d3df96c012c13e69d93569606e91
parent09520b678aac12542bdce70948228792f6fafa4e (diff)
downloadaports-0ca16137611fc44a07677b6ef15b0709deb45392.tar.bz2
aports-0ca16137611fc44a07677b6ef15b0709deb45392.tar.xz
main/termrec: upgrade to 0.18
-rw-r--r--main/termrec/APKBUILD18
-rw-r--r--main/termrec/Fix-a-bashism-in-the-testsuite.patch26
2 files changed, 7 insertions, 37 deletions
diff --git a/main/termrec/APKBUILD b/main/termrec/APKBUILD
index bd691660ac..aebca8edd9 100644
--- a/main/termrec/APKBUILD
+++ b/main/termrec/APKBUILD
@@ -1,25 +1,22 @@
# Contributor: ScrumpyJack <scrumpyjack@st.ilet.to>
# Maintainer: ScrumpyJack <scrumpyjack@st.ilet.to>
pkgname=termrec
-pkgver=0.17
-pkgrel=1
+pkgver=0.18
+pkgrel=0
pkgdesc="termrec is a program for recording videos of terminal output"
url="http://angband.pl/termrec.html"
arch="all"
-license="GPL"
+license="LGPL-3.0-only"
makedepends="zlib-dev bzip2-dev"
checkdepends="xz-dev autoconf"
subpackages="$pkgname-dev $pkgname-doc"
-source="https://prdownloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.xz
- Fix-a-bashism-in-the-testsuite.patch"
+source="https://prdownloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.xz"
options="libtool"
-builddir="$srcdir/$pkgname-$pkgver"
-
build() {
cd "$builddir"
- ./configure --prefix=/usr
- make
+ ./configure --prefix=/usr --disable-static
+ make
}
check() {
@@ -32,5 +29,4 @@ package() {
make DESTDIR="$pkgdir/" install
}
-sha512sums="43b9649b9dfff0b01fc545a388b21341f40667b176b585c160a28efa6b2cde1ef1d60770423c5739d790d6ad2e53ee7f81ad0ab28545d595a442f94d10a52e58 termrec-0.17.tar.xz
-7b2de6d264db3644380cfd6e1b4266f7e1e371621f8b96f57c7cd5f4dbf19a5656a31e6538e7411a21a0f5613df1ffcccb21a544d345755232050fd6595e1e53 Fix-a-bashism-in-the-testsuite.patch"
+sha512sums="148ef0c267a8010af27b0b9185e3b22985a770386bc96d919c0d5276834f0cc45bd9619a3d6dc7dc974c465d0551c1e434d3fd697b9f0afb45b31dc862507427 termrec-0.18.tar.xz"
diff --git a/main/termrec/Fix-a-bashism-in-the-testsuite.patch b/main/termrec/Fix-a-bashism-in-the-testsuite.patch
deleted file mode 100644
index c72204b483..0000000000
--- a/main/termrec/Fix-a-bashism-in-the-testsuite.patch
+++ /dev/null
@@ -1,26 +0,0 @@
-From 0875aeaf4d1f4c1c76e2a9c5213a5072a072fb25 Mon Sep 17 00:00:00 2001
-From: Adam Borowski <kilobyte@angband.pl>
-Date: Tue, 1 Sep 2015 09:11:29 +0200
-Subject: [PATCH] Fix a bashism in the testsuite.
-
----
- tests/testsuite.at | 3 ++-
- 1 file changed, 2 insertions(+), 1 deletion(-)
-
-diff --git a/tests/testsuite.at b/tests/testsuite.at
-index de246f3..7b8f486 100644
---- a/tests/testsuite.at
-+++ b/tests/testsuite.at
-@@ -35,7 +35,8 @@ AT_SETUP([vt100 sequences])
- for x in "$top_srcdir/tests/vt.in/"*
- do
- unescape <"$x" >stdin
-- cat "${x/vt.in/vt.out}" >expout
-+ y="$(echo "$x"|sed 's/vt\.in/vt.out/')"
-+ cat "$y" >expout
- AT_CHECK([vt -d <stdin],,[expout])
- done
- AT_CLEANUP
---
-2.14.1
-