Merge pull request #170 from eschnett/develop

Add rsync package
This commit is contained in:
Todd Gamblin 2015-11-17 16:13:45 -06:00
commit 2491a67ebf

View File

@ -0,0 +1,14 @@
from spack import *
class Rsync(Package):
"""rsync is an open source utility that provides fast incremental file transfer."""
homepage = "https://rsync.samba.org"
url = "https://download.samba.org/pub/rsync/rsync-3.1.1.tar.gz"
version('3.1.1', '43bd6676f0b404326eee2d63be3cdcfe')
def install(self, spec, prefix):
configure('--prefix=%s' % prefix)
make()
make("install")