Files
main/multimedia/graphics/libopenraw/actions.py
T
4fury-c3440d8 d874e2b3a5 libopenraw.
2020-12-23 20:37:37 +00:00

25 lines
578 B
Python

#!/usr/bin/python
# -*- coding: utf-8 -*-
#
# Licensed under the GNU General Public License, version 3.
# See the file https://www.gnu.org/licenses/gpl-3.0.txt
from pisi.actionsapi import autotools
from pisi.actionsapi import pisitools
from pisi.actionsapi import get
def setup():
autotools.configure("--disable-dependency-tracking --disable-static --enable-gnome")
def build():
autotools.make()
def check():
autotools.make("check")
def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
pisitools.dodoc("AUTHORS", "COPYING", "NEWS", "README", "TODO")