1234567891011121314151617181920 |
- # -*- 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 pisitools
- from pisi.actionsapi import cmaketools
- def setup():
- pisitools.cflags.add("-Wno-implicit-function-declaration -Wno-misleading-indentation -Wno-unused-but-set-variable")
- cmaketools.make("config shared=1 prefix=/usr")
- def build():
- cmaketools.make()
- def install():
- cmaketools.rawInstall("DESTDIR=%s" % get.installDIR())
- pisitools.dodoc("LICENSE*")
|