23 lines
615 B
Python
23 lines
615 B
Python
#!/usr/bin/python
|
|
# -*- coding: utf-8 -*-
|
|
#
|
|
# Licensed under the GNU General Public License, version 3.
|
|
# See the file http://www.gnu.org/copyleft/gpl.txt.
|
|
#
|
|
# nut is done with checkouts from
|
|
# svn://svn.mplayerhq.hu/nut/src/trunk
|
|
|
|
from pisi.actionsapi import autotools
|
|
from pisi.actionsapi import pisitools
|
|
from pisi.actionsapi import shelltools
|
|
from pisi.actionsapi import get
|
|
|
|
def build():
|
|
shelltools.export("CFLAGS", "%s -fPIC" % get.CFLAGS())
|
|
autotools.make("-j1 CC=%s" % get.CC())
|
|
|
|
def install():
|
|
autotools.rawInstall("PREFIX=%s/usr" % get.installDIR())
|
|
|
|
pisitools.dodoc("COPYING", "README*")
|