summaryrefslogtreecommitdiffstats
path: root/axel
diff options
context:
space:
mode:
authorpiernov <piernov@piernov.org>2010-12-12 15:05:22 +0100
committerpiernov <piernov@piernov.org>2010-12-12 15:06:05 +0100
commit7ad66c2692efc17dc30b2369c8427123317a8156 (patch)
tree498f088e62cd5f59e053436a0d108553cb6bbc59 /axel
parent24748cdf7537814e58f1e8b78bc9a39b6c0fa76e (diff)
downloadbase-7ad66c2692efc17dc30b2369c8427123317a8156.tar.gz
base-7ad66c2692efc17dc30b2369c8427123317a8156.tar.bz2
base-7ad66c2692efc17dc30b2369c8427123317a8156.tar.xz
base-7ad66c2692efc17dc30b2369c8427123317a8156.zip
Recette d'axel ajoutée.
Diffstat (limited to 'axel')
-rw-r--r--axel/.footprint25
-rw-r--r--axel/.md5sum1
-rw-r--r--axel/.sha256sum1
-rw-r--r--axel/Pkgfile25
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;
+}