This commit is contained in:
4fury-c3440d8
2020-12-13 09:56:29 +00:00
parent c3e440a411
commit f0cb39e2c0
8 changed files with 296 additions and 0 deletions
+28
View File
@@ -0,0 +1,28 @@
#!/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
j = "--enable-outputs \
--disable-visualizer \
--disable-clock \
--disable-static \
--with-taglib \
"
def setup():
autotools.configure(j)
def build():
autotools.make()
def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
pisitools.dodoc("AUTHORS", "COPYING", "INSTALL", "NEWS")