Files
main/network/misc/libasyncns/actions.py
T
Ertuğrul Erata ee19cd1858 fix deps for pulseaudio
lirc left.
2015-07-08 12:53:44 +03:00

24 lines
567 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 autotools
from pisi.actionsapi import pisitools
def setup():
autotools.configure("--enable-static=no \
--disable-lynx \
--disable-static")
pisitools.dosed("libtool", " -shared ", " -Wl,-O1,--as-needed -shared ")
def build():
autotools.make()
def install():
autotools.install()
pisitools.dodoc("LICENSE")