Proje Gitea'ya taşındı (Temiz başlangıç)

This commit is contained in:
Erkan IŞIK
2026-06-27 23:27:13 +03:00
commit c077995f65
683 changed files with 315285 additions and 0 deletions
+32
View File
@@ -0,0 +1,32 @@
#!/usr/bin/env 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 cmaketools, shelltools
from pisi.actionsapi import get
def setup():
shelltools.makedirs('build')
shelltools.cd('build')
parameters = " ".join([
"-DTOGGL_VERSION:STRING=\"{}\"".format(get.srcVERSION()),
"-DTOGGL_PRODUCTION_BUILD=ON",
"-DTOGGL_ALLOW_UPDATE_CHECK=ON",
"-DUSE_BUNDLED_LIBRARIES=OFF",
])
cmaketools.configure(parameters=parameters, sourceDir='..')
def build():
shelltools.makedirs('build')
shelltools.cd('build')
cmaketools.make()
def install():
shelltools.makedirs('build')
shelltools.cd('build')
cmaketools.rawInstall("DESTDIR=%s" % get.installDIR())