29 lines
998 B
Python
29 lines
998 B
Python
#!/usr/bin/python
|
|
# -*- coding: utf-8 -*-
|
|
#
|
|
# Licensed under the GNU General Public License, version 2.
|
|
# See the file http://www.gnu.org/copyleft/gpl.txt.
|
|
|
|
from pisi.actionsapi import autotools, get, pisitools, shelltools
|
|
|
|
def setup():
|
|
pisitools.dosed("configure.ac", "gpg gpg2", "gpg1 gpg2")
|
|
pisitools.dosed("configure.ac", "min_gpgme_version=1.0.0", "min_gpgme_version=2.0.0")
|
|
#shelltools.system("NOCONFIGURE=1 ./autogen.sh")
|
|
autotools.autoreconf("-fi")
|
|
autotools.configure("--prefix=/usr \
|
|
--sysconfdir=/etc \
|
|
--localstatedir=/var \
|
|
--disable-static \
|
|
--disable-schemas-compile \
|
|
--enable-gtk-doc")
|
|
pisitools.dosed("libtool", " -shared ", " -Wl,-O1,--as-needed -shared ")
|
|
|
|
def build():
|
|
autotools.make()
|
|
|
|
def install():
|
|
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
|
|
|
|
pisitools.dodoc("AUTHORS", "ChangeLog", "README*", "NEWS")
|