Magellan Linux

Contents of /branches/R11-unstable/core/rsync/rsync-3.1.3-r1.smage2

Parent Directory Parent Directory | Revision Log Revision Log


Revision 32102 - (show annotations) (download)
Mon Apr 29 11:38:25 2019 UTC (5 years ago) by niro
File size: 719 byte(s)
-release branches/R11-unstable
1 # $Id$
2
3 PNAME="rsync"
4 PVER="3.1.3"
5 PBUILD="r1"
6
7 PCAT="net-misc"
8
9 DESCRIPTION="rsync is an open source utility that provides fast incremental file transfer."
10 HOMEPAGE="http://rsync.samba.org/"
11
12 DEPEND=">= virtual/glibc"
13
14 SRCFILE="${PNAME}-${PVER}.tar.gz"
15 SRCDIR="${BUILDDIR}/${PNAME}-${PVER}"
16
17 sminclude mbuild
18
19 SRC_URI=(
20 https://download.samba.org/pub/${PNAME}/src/${SRCFILE}
21 mirror://${PNAME}/${SRCFILE}
22 )
23
24 UP2DATE="updatecmd http://rsync.samba.org/ftp/${PNAME} | grep ${PNAME}- | highesttarball gz"
25
26 src_compile()
27 {
28 cd ${SRCDIR}
29
30 # we want not hassle with libpopt dependencies
31 # so we use the rsync bundled popt library
32 mconfigure --with-rsyncd-conf=/etc/rsyncd.conf --with-included-popt || die
33 mmake || die
34 }