diff options
Diffstat (limited to 'community/aria2/build')
-rwxr-xr-x | community/aria2/build | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/community/aria2/build b/community/aria2/build new file mode 100755 index 00000000..9fae6147 --- /dev/null +++ b/community/aria2/build @@ -0,0 +1,13 @@ +#!/bin/sh -e + +./configure \ + --prefix=/usr \ + --disable-nls \ + --disable-metalink \ + --disable-websocket \ + --without-libxml2 \ + --without-libexpat \ + --without-sqlite3 + +make +make DESTDIR="$1" install |