23 lines
689 B
Python
23 lines
689 B
Python
#!/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 shelltools
|
|
from pisi.actionsapi import autotools
|
|
from pisi.actionsapi import pisitools
|
|
from pisi.actionsapi import get
|
|
|
|
def build():
|
|
autotools.make("CC=%s CFLAGS='%s -fPIC' LDFLAGS='%s'" % (get.CC(), get.CFLAGS(), get.LDFLAGS()))
|
|
|
|
def install():
|
|
pisitools.dolib_so("libiniparser.so.1")
|
|
pisitools.dosym("libiniparser.so.1", "/usr/lib/libiniparser.so")
|
|
|
|
pisitools.dodir("/usr/include")
|
|
pisitools.insinto("/usr/include", "src/*.h")
|
|
|
|
pisitools.dodoc("README.md", "AUTHORS", "LICENSE")
|