Magellan Linux

Contents of /smage/trunk/core/bc/bc-1.07.1-r3.smage2

Parent Directory Parent Directory | Revision Log Revision Log


Revision 14009 - (show annotations) (download)
Thu Jul 2 12:12:30 2020 UTC (3 years, 9 months ago) by niro
File size: 571 byte(s)
auto added: ver bump to 1.07.1-r3
1 # $Id$
2
3 PNAME="bc"
4 PVER="1.07.1"
5 PBUILD="r3"
6
7 PCAT="sys-dev"
8
9 DESCRIPTION="bc is an arbitrary precision numeric processing language."
10 HOMEPAGE="http://www.gnu.org/software/bc/"
11
12 DEPEND=">= sys-libs/ncurses-6.2"
13
14 # busybox ed is incompat
15 SDEPEND=">= sys-dev/flex-2.6
16 >= sys-apps/ed-1.1"
17
18 SRCFILE="${PNAME}-${PVER}.tar.gz"
19 SRCDIR="${BUILDDIR}/${PNAME}-${PVER}"
20
21 sminclude mbuild
22
23 SRC_URI=(
24 gnu://${PNAME}/${SRCFILE}
25 mirror://${PNAME}/${SRCFILE}
26 )
27
28 UP2DATE="updatecmd_gnu ${PNAME} gz"
29
30 src_compile()
31 {
32 cd ${SRCDIR}
33
34 mconfigure --without-readline || die
35 mmake || die
36 }