diff options
-rw-r--r-- | axel/.footprint | 25 | ||||
-rw-r--r-- | axel/.md5sum | 1 | ||||
-rw-r--r-- | axel/.sha256sum | 1 | ||||
-rw-r--r-- | axel/Pkgfile | 25 |
4 files changed, 52 insertions, 0 deletions
diff --git a/axel/.footprint b/axel/.footprint new file mode 100644 index 0000000..846199b --- /dev/null +++ b/axel/.footprint @@ -0,0 +1,25 @@ +drwxr-xr-x root/root etc/ +-rw-r--r-- root/root etc/axelrc +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/bin/ +-rwxr-xr-x root/root usr/bin/axel +drwxr-xr-x root/root usr/share/ +drwxr-xr-x root/root usr/share/locale/ +drwxr-xr-x root/root usr/share/locale/de/ +drwxr-xr-x root/root usr/share/locale/de/LC_MESSAGES/ +-rw-r--r-- root/root usr/share/locale/de/LC_MESSAGES/axel.mo +drwxr-xr-x root/root usr/share/locale/nl/ +drwxr-xr-x root/root usr/share/locale/nl/LC_MESSAGES/ +-rw-r--r-- root/root usr/share/locale/nl/LC_MESSAGES/axel.mo +drwxr-xr-x root/root usr/share/locale/ru/ +drwxr-xr-x root/root usr/share/locale/ru/LC_MESSAGES/ +-rw-r--r-- root/root usr/share/locale/ru/LC_MESSAGES/axel.mo +drwxr-xr-x root/root usr/share/locale/zh_CN/ +drwxr-xr-x root/root usr/share/locale/zh_CN/LC_MESSAGES/ +-rw-r--r-- root/root usr/share/locale/zh_CN/LC_MESSAGES/axel.mo +drwxr-xr-x root/root usr/share/man/ +drwxr-xr-x root/root usr/share/man/man1/ +-rw-r--r-- root/root usr/share/man/man1/axel.1.bz2 +drwxr-xr-x root/root usr/share/man/zh_CN/ +drwxr-xr-x root/root usr/share/man/zh_CN/man1/ +-rw-r--r-- root/root usr/share/man/zh_CN/man1/axel.1 diff --git a/axel/.md5sum b/axel/.md5sum new file mode 100644 index 0000000..97f5cc3 --- /dev/null +++ b/axel/.md5sum @@ -0,0 +1 @@ +5fd72e67a682d20874b9f6d073201c6a axel-2.4.tar.bz2 diff --git a/axel/.sha256sum b/axel/.sha256sum new file mode 100644 index 0000000..2a5a27b --- /dev/null +++ b/axel/.sha256sum @@ -0,0 +1 @@ +ebc7d40e989c680d2afa632a17e5208101608924cf446da20814a6f3c3338612 axel-2.4.tar.bz2 diff --git a/axel/Pkgfile b/axel/Pkgfile new file mode 100644 index 0000000..98c47ab --- /dev/null +++ b/axel/Pkgfile @@ -0,0 +1,25 @@ +description="Axel tries to accelerate downloads by using multiple connections (possibly to multiple servers) for one download." +packager="piernov <piernov AT piernov DOT org>" +maintainer="piernov <piernov AT piernov DOT org>" +url="http://axel.alioth.debian.org/" +depends=() + +name=axel +version=2.4 +release=1 +source=(https://alioth.debian.org/frs/download.php/3016/$name-$version.tar.bz2) +build () +{ + if use nls; then + i18n=1 + fi + cd $name-$version; + ./configure \ + --prefix=$prefix \ + --i18n=$i18n \ + --mandir=$mandir \ + --strip=0; + # strip is disabled because pkg++ will do the job later. + make; + make DESTDIR=$PKG install; +} |