0ad ve gereksinimleri

This commit is contained in:
suvari
2019-10-30 00:43:29 +03:00
parent 08fc5bcc3c
commit 55c92898fa
27 changed files with 2215 additions and 316 deletions
+23
View File
@@ -0,0 +1,23 @@
#!/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 autotools
from pisi.actionsapi import pisitools
from pisi.actionsapi import shelltools
from pisi.actionsapi import get
def setup():
autotools.configure()
def build():
#shelltools.cd("make/linux")
autotools.make("PREFIX=/usr")
def install():
#shelltools.cd("make/linux")
autotools.install("libdir=%s/usr/lib" % get.installDIR())
pisitools.dodoc("ChangeLog", "LICENSE","README.*")