new packages for scrpy: gtest, android-udev, android-tools

This commit is contained in:
suvari
2022-05-03 22:20:22 +03:00
parent 36e49a6605
commit 76c820d0d5
12 changed files with 436 additions and 5 deletions
+24
View File
@@ -0,0 +1,24 @@
#!/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 shelltools
from pisi.actionsapi import cmaketools
from pisi.actionsapi import pisitools
from pisi.actionsapi import get
def setup():
shelltools.makedirs("build")
shelltools.cd("build")
cmaketools.configure(sourceDir="..")
def build():
cmaketools.make("-C build")
#cmaketools.make("-C build doc")
def install():
shelltools.cd("build")
cmaketools.rawInstall("DESTDIR=%s" % get.installDIR())