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
+25
View File
@@ -0,0 +1,25 @@
#!/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
shelltools.export("PTHREAD_LIBS", "-lpthread")
def setup():
autotools.autoreconf("-vfi")
autotools.configure("--with-gnutls \
--disable-static")
def build():
autotools.make()
def install():
autotools.install()
pisitools.dodoc("README", "AUTHORS", "LICENSE", "ChangeLog")