commit
2491a67ebf
14
var/spack/packages/rsync/package.py
Normal file
14
var/spack/packages/rsync/package.py
Normal 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")
|
Loading…
Reference in New Issue
Block a user