From 350d00a6d8f76087b56220fbfe28bf23a0008c15 Mon Sep 17 00:00:00 2001 From: Marian Buschsieweke Date: Mon, 17 Jul 2017 20:57:36 +0200 Subject: [PATCH] main/bc: Added readline support The makedepens `readline-dev` suggests that readline support was intented. However, option `--with-readline` needs also be passed to compile bc with readline support. In addtion, I added readline as dependency. --- main/bc/APKBUILD | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/main/bc/APKBUILD b/main/bc/APKBUILD index bc496fa1f47..541f33cddfd 100644 --- a/main/bc/APKBUILD +++ b/main/bc/APKBUILD @@ -2,7 +2,7 @@ # Maintainer: Natanael Copa pkgname=bc pkgver=1.06.95 -pkgrel=3 +pkgrel=4 pkgdesc="An arbitrary precision numeric processing language (calculator)" url="http://www.gnu.org/software/bc/bc.html" arch="all" @@ -24,7 +24,8 @@ build() { --prefix=/usr \ --sysconfdir=/etc \ --mandir=/usr/share/man \ - --infodir=/usr/share/info + --infodir=/usr/share/info \ + --with-readline make }