audacious-plugins.

This commit is contained in:
4fury-c3440d8
2022-01-18 14:32:36 +03:00
parent beb42742df
commit e6e7bde347
2 changed files with 42 additions and 22 deletions
+9 -12
View File
@@ -1,20 +1,17 @@
#!/usr/bin/env python
#-*- coding:utf-8 -*-
#!/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 mesontools
from pisi.actionsapi import pisitools
from pisi.actionsapi import get
# 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")
mesontools.configure()
def build():
autotools.make()
mesontools.build()
def install():
autotools.rawInstall("DESTDIR=%s"%get.installDIR())
mesontools.install()