audacious and Dependency audacious-plugins libbinio First Release.

This commit is contained in:
alick01
2018-12-06 17:01:18 +03:00
parent af3bbadc82
commit 6c084d8726
11 changed files with 389 additions and 0 deletions
@@ -0,0 +1,20 @@
#!/usr/bin/env python
#-*- coding:utf-8 -*-
from pisi.actionsapi import autotools
from pisi.actionsapi import get
from pisi.actionsapi import pisitools
# if pisi can't find source directory, see /var/pisi/__package_name__/work/ and:
# WorkDir="__package_name__-"+ get.srcVERSION() +"/sub_project_dir/"
def setup():
autotools.rawConfigure("--prefix=/usr")
def build():
autotools.make()
def install():
autotools.rawInstall("DESTDIR=%s"%get.installDIR())