rsync add rep

This commit is contained in:
burakerturk
2015-07-16 02:50:18 +03:00
parent 5139510106
commit 5d22bb0a7a
11 changed files with 218 additions and 2 deletions
+25
View File
@@ -0,0 +1,25 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
#
# Licensed under the GNU General Public License, version 3.
# See the file http://www.gnu.org/licenses/gpl.txt
from pisi.actionsapi import autotools
from pisi.actionsapi import pisitools
from pisi.actionsapi import get
WorkDir="rsync-%s" % get.srcVERSION().replace('_','')
def setup():
autotools.configure("--without-included-zlib")
def build():
autotools.make()
def check():
autotools.make("check")
def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
pisitools.dodoc("NEWS","README","TODO")