concept from its predecessor, Aria, and is written from scratch. aria2 has a segmented downloading engine in its core. It can download one file from multiple URLs or multiple connections from one URL. This results in very high speed downloading, much faster than ordinary browsers. This engine in was implemented in a single-thread model. The architecture is clean and easy to extend. aria2 currently supports HTTP, FTP, and BitTorrent. It also supports Metalink version 3.0. Please visit the project web site at http://aria2.sourceforge.net
28 lines
648 B
Makefile
28 lines
648 B
Makefile
# $NetBSD: Makefile,v 1.1 2007/05/24 01:43:37 bsadewitz Exp $
|
|
#
|
|
|
|
DISTNAME= aria2-0.10.2+1
|
|
PKGNAME= ${DISTNAME:S/+/_/g}
|
|
CATEGORIES= net
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=aria2/}
|
|
EXTRACT_SUFX= .tar.bz2
|
|
|
|
MAINTAINER= blair.sadewitz@gmail.com
|
|
HOMEPAGE= ftp://superb-west.dl.sourceforge.net/sourceforge/aria2/
|
|
COMMENT= Multithreaded download accelerator
|
|
|
|
PKG_DESTDIR_SUPPORT= user-destdir
|
|
|
|
GNU_CONFIGURE= yes
|
|
USE_PKGLOCALEDIR= yes
|
|
USE_LANGUAGES= c c++
|
|
|
|
CONFIGURE_ARGS+= --disable-xmltest
|
|
|
|
.include "options.mk"
|
|
|
|
.include "../../converters/libiconv/buildlink3.mk"
|
|
.include "../../devel/gettext-lib/buildlink3.mk"
|
|
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|