curl-7.77.0 ver. bump

This commit is contained in:
Rmys
2021-05-31 19:30:30 +03:00
parent 987be20be1
commit 11ea83f059
10 changed files with 22583 additions and 22289 deletions
+24
View File
@@ -0,0 +1,24 @@
#!/usr/bin/env 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 pisitools
from pisi.actionsapi import get
def setup():
autotools.autoreconf("-i")
autotools.configure("--disable-hpack-tools \
--disable-python-bindings \
--disable-static \
--with-libxml2")
def build():
autotools.make()
def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
pisitools.dodoc("AUTHORS", "ChangeLog", "COPYING", "NEWS", "README")