Magellan Linux

Contents of /smage/trunk/core/grep/grep-3.11-r1.smage2

Parent Directory Parent Directory | Revision Log Revision Log


Revision 15876 - (show annotations) (download)
Mon Aug 21 17:49:38 2023 UTC (9 months, 2 weeks ago) by niro
File size: 648 byte(s)
-ver bump to 3.11-r1
1 # $Id$
2
3 PNAME="grep"
4 PVER="3.11"
5 PBUILD="r1"
6
7 PCAT="sys-apps"
8
9 DESCRIPTION="GNU regular expression matcher."
10 HOMEPAGE="http://www.gnu.org/software/grep/grep.html"
11
12 DEPEND=">= virtual/glibc
13 >= dev-libs/libpcre2-10"
14 SDEPEND=">= virtual/glibc-dev
15 >= dev-libs/libpcre2-dev-10"
16 PROVIDE="virtual/grep"
17
18 SRCFILE="${PNAME}-${PVER}.tar.xz"
19 SRCDIR="${BUILDDIR}/${PNAME}-${PVER}"
20
21 ALX_PKG_KEEP="usr/bin"
22 # one test fails
23 msetfeature "!check"
24 sminclude mbuild alx-split
25
26 SRC_URI=(
27 gnu://${PNAME}/${SRCFILE}
28 mirror://${PNAME}/${SRCFILE}
29 )
30
31 UP2DATE="updatecmd_gnu ${PNAME} xz"
32
33 src_compile()
34 {
35 cd ${SRCDIR}
36
37 mconfigure --disable-nls || die
38 mmake || die
39 }