libconfig

This commit is contained in:
Poyraz76
2015-08-20 17:51:13 +03:00
parent bc3614b322
commit a45be9a4eb
3 changed files with 91 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
#!/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
def setup():
autotools.configure("--disable-static")
# Do not link to unused m library
pisitools.dosed("libtool", "^(postdeps=.*) -lm (.*)$", r"\1 \2")
def build():
autotools.make()
def install():
autotools.install()
pisitools.dodoc("AUTHORS","ChangeLog","COPYING.LIB","README")