A Crux port for axel

As mentioned previously, I assembled a Crux port for axel today.

# Description: axel is a command-line download accelerator.
# URL: http://axel.alioth.debian.org/
# Maintainer: 
# Depends on: glibc 

name=axel
version=1.1
release=1
source=(http://alioth.debian.org/frs/download.php/2287/$name-$version.tar.gz)

build () 
{ 
    cd $name-$version;
    ./configure --prefix=/usr --etcdir=/etc/axel;
    make || return 1;
    make DESTDIR=$PKG install
}

I take almost no credit for this one though, since the heavy lifting was done by Colin Zheng’s PKGBUILD2Pkgfile script. I just polished some of the corners. 🙂

I should probably revise some of my old Frankenscripts and see if Colin’s tool makes them any smoother. 😐

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Google photo

You are commenting using your Google account. Log Out /  Change )

Twitter picture

You are commenting using your Twitter account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s