Magellan Linux

Contents of /branches/R11-unstable/core/cpio/cpio-2.12-r1.smage2

Parent Directory Parent Directory | Revision Log Revision Log


Revision 32223 - (show annotations) (download)
Mon Apr 29 11:56:53 2019 UTC (5 years ago) by niro
File size: 586 byte(s)
-release branches/R11-unstable
1 # $Id$
2
3 PNAME="cpio"
4 PVER="2.12"
5 PBUILD="r1"
6
7 PCAT="app-arch"
8
9 DESCRIPTION="Archiver that handles various types of cpio and tar archives."
10 HOMEPAGE="http://www.gnu.org/software/cpio/"
11
12 DEPEND=">= virtual/glibc"
13 SDEPEND=">= virtual/sed"
14
15 SRCFILE="${PNAME}-${PVER}.tar.gz"
16 SRCDIR="${BUILDDIR}/${PNAME}-${PVER}"
17
18 sminclude mbuild
19
20 SRC_URI=(
21 gnu://${PNAME}/${SRCFILE}
22 mirror://${PNAME}/${SRCFILE}
23 )
24
25 UP2DATE="updatecmd_gnu ${PNAME}"
26
27 src_compile()
28 {
29 cd ${SRCDIR}
30
31 mconfigure \
32 --libexecdir=/usr/$(mlibdir)/cpio \
33 --with-rmt=/usr/bin/rmt \
34 --enable-nls \
35 || die
36
37 mmake || die
38 }