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
+22
View File
@@ -0,0 +1,22 @@
#!/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
from pisi.actionsapi import pisitools
from pisi.actionsapi import get
def setup():
autotools.configure("--disable-static \
--enable-iostream \
--enable-string")
def build():
autotools.make()
def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
pisitools.dodoc("ChangeLog", "COPYING", "AUTHORS", "NEWS", "README", "TODO")