Files
main/hardware/optical/libcdio-paranoia/actions.py
T
2018-08-01 01:14:50 +03:00

29 lines
919 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 get
from pisi.actionsapi import autotools
from pisi.actionsapi import pisitools
from pisi.actionsapi import shelltools
def setup():
pisitools.dosed("configure.ac", "AM_CONFIG_HEADER", "AC_CONFIG_HEADERS")
autotools.autoreconf("-vif")
autotools.configure("--disable-static \
--disable-example-progs \
--enable-cpp-progs \
--with-cd-paranoia-name=libcdio-paranoia")
pisitools.dosed("libtool", " -shared ", " -Wl,-O1,--as-needed -shared ")
def build():
autotools.make()
def install():
autotools.rawInstall("-j1 DESTDIR=%s" % (get.installDIR()))
pisitools.dodoc("AUTHORS", "ChangeLog", "COPYING*", "NEWS", "README*", "THANKS")