libyaml dep 4 ruby in main

This commit is contained in:
Ertuğrul Erata
2015-07-22 15:27:08 +03:00
parent 19120fc72b
commit b9addc07ca
4 changed files with 100 additions and 3 deletions
+24
View File
@@ -0,0 +1,24 @@
#!/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 = "yaml-%s" % get.srcVERSION()
def setup():
autotools.configure("--disable-static")
def build():
autotools.make()
def install():
autotools.install()
pisitools.dohtml("doc/html/*")
pisitools.dodoc("LICENSE", "README")