This commit is contained in:
Poyraz76
2015-09-05 17:22:50 +03:00
parent a29e405043
commit 2918d115c2
6 changed files with 157 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
#!/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 shelltools
from pisi.actionsapi import pisitools
from pisi.actionsapi import get
def build():
shelltools.export("CFLAGS", "-Os")
pisitools.dosed("Make.defaults","-O0","-Os")
autotools.make("libdir=/usr/lib bindir=/usr/bin")
def install():
autotools.rawInstall("DESTDIR=%s libdir=/usr/lib/" % get.installDIR())