axel add to repo

This commit is contained in:
idriskalp
2020-01-11 05:08:24 +03:00
parent 0f8c963ae4
commit bfa9ef3452
2 changed files with 71 additions and 0 deletions
+25
View File
@@ -0,0 +1,25 @@
#!/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
from pisi.actionsapi import shelltools
def setup():
autotools.configure("--prefix=/usr \
--mandir=/usr/share/man \
--enable-shared \
--disable-static")
def build():
autotools.make()
def install():
autotools.install()
pisitools.dodoc("AUTHORS", "COPYING*", "README*")
+46
View File
@@ -0,0 +1,46 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>axel</Name>
<Homepage>https://github.com/axel-download-accelerator/axel</Homepage>
<Packager>
<Name>Idris Kalp</Name>
<Email>idriskalp@gmail.com</Email>
</Packager>
<License>GPLv2</License>
<IsA>app:console</IsA>
<Summary>Light command line download accelerator</Summary>
<Description>Axel tries to accelerate the download process by using multiple connections per file, and can also balance the load between different servers.</Description>
<Archive sha1sum="6be53c0eb64e524c89c90b5caec5b550d0e202fa" type="tarxz">https://github.com/axel-download-accelerator/axel/releases/download/v2.17.6/axel-2.17.6.tar.xz</Archive>
<BuildDependencies>
<Dependency>openssl-devel</Dependency>
</BuildDependencies>
</Source>
<Package>
<Name>axel</Name>
<RuntimeDependencies>
<Dependency>openssl</Dependency>
<Dependency>libgcc</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="header">/usr/include</Path>
<Path fileType="locale">/usr/share/locale</Path>
<Path fileType="library">/usr/lib</Path>
<Path fileType="doc">/usr/share/man</Path>
<Path fileType="doc">/usr/share/doc</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2020-01-11</Date>
<Version>2.7.6</Version>
<Comment>First release.</Comment>
<Name>Idris Kalp</Name>
<Email>idriskalp@gmail.com</Email>
</Update>
</History>
</PISI>