21f7a93e7a
* Removed "autoreconf". Upstream provides working 'configure'. * Disabled libcurl in parameter. It is not declared as dependency and used only for testing. * Disabled examples build. They are not needed for installed library. * Enforced HTTPS version build, instead of automatic detection * Removed unneeded libtool patch * Fixed license (LGPLv2.1 or later) * Removed "textinfo" dependency. It is not needed, all info files are pre-built. * Removed "libgrypt" and "libgpg-error". They was needed for for GnuTLS >2.20 * Removed mention of "microspdy". It was removed several years ago from upstream. * Removed "demo" file. It is compiled example, which is not designed for any practical use.
25 lines
678 B
Python
25 lines
678 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
|
|
|
|
from pisi.actionsapi import autotools
|
|
from pisi.actionsapi import pisitools
|
|
from pisi.actionsapi import get
|
|
|
|
def setup():
|
|
autotools.configure("--disable-static \
|
|
--enable-shared \
|
|
--disable-curl \
|
|
--disable-examples \
|
|
--enable-https")
|
|
|
|
def build():
|
|
autotools.make()
|
|
|
|
def install():
|
|
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
|
|
|
|
pisitools.dodoc("AUTHORS", "ChangeLog", "COPYING", "NEWS", "README")
|