Files
main/multimedia/sound/libmpcdec/actions.py
T
2015-08-20 18:28:10 +03:00

18 lines
337 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
import os
def setup():
autotools.configure("--disable-static")
def build():
autotools.make()
def install():
autotools.install()