Files
main/multimedia/misc/libexif/actions.py
T
4fury-c3440d8 de13d09032 libexif.
2022-11-14 10:19:44 +03:00

17 lines
397 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, pisitools, get
def setup():
autotools.configure("--disable-docs --disable-static")
def build():
autotools.make()
def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR())