libosinfo.

This commit is contained in:
4fury-c3440d8
2021-11-27 02:41:04 +03:00
parent 646a68a383
commit 8c3451c6da
2 changed files with 24 additions and 16 deletions
+7 -7
View File
@@ -1,21 +1,21 @@
#!/usr/bin/env 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
# See the file https://www.gnu.org/licenses/gpl-3.0.txt
from pisi.actionsapi import get
from pisi.actionsapi import mesontools
from pisi.actionsapi import pisitools
t = "-Dwith-usb-ids-path=/usr/share/hwdata/usb.ids -Dwith-pci-ids-path=/usr/share/hwdata/pci.ids"
def setup():
mesontools.configure("-D with-usb-ids-path=/usr/share/hwdata/usb.ids \
-D with-pci-ids-path=/usr/share/hwdata/pci.ids")
mesontools.configure(t)
def build():
mesontools.build()
def install():
mesontools.install()
pisitools.dodoc("AUTHORS", "ChangeLog", "COPYING", "NEWS", "README")
pisitools.dodoc("AUTHORS", "ChangeLog", "NEWS")