19 lines
330 B
Python
19 lines
330 B
Python
#!/usr/bin/python
|
|
# -*- coding: utf-8 -*-
|
|
|
|
from pisi.actionsapi import gnuconfig
|
|
from pisi.actionsapi import autotools
|
|
|
|
WorkDir='popt-1.7'
|
|
|
|
def setup():
|
|
gnuconfig.gnuconfig_update()
|
|
# libtoolize.libtoolize()
|
|
autotools.configure( '--with-nls' )
|
|
|
|
def build():
|
|
autotools.make()
|
|
|
|
def install():
|
|
autotools.install()
|