libuv add core repo for cmake 3.7.1

This commit is contained in:
aydemir
2016-12-01 17:42:22 +02:00
parent 0ac9519085
commit 9c43a64299
6 changed files with 11028 additions and 10870 deletions
+22
View File
@@ -0,0 +1,22 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
# Licensed under the GNU General Public License, version 3.
# See the file http://www.gnu.org/copyleft/gpl.txt
from pisi.actionsapi import autotools
from pisi.actionsapi import pisitools
from pisi.actionsapi import shelltools
from pisi.actionsapi import get
def setup():
shelltools.system("./autogen.sh")
autotools.configure()
def build():
autotools.make()
def install():
autotools.install()
pisitools.dodoc("LICENSE", "AUTHORS", "README.md", "ChangeLog")