diff options
author | Cem Keylan <cem@ckyln.com> | 2020-12-25 03:17:40 +0300 |
---|---|---|
committer | Cem Keylan <cem@ckyln.com> | 2020-12-25 03:17:40 +0300 |
commit | 347dcd3e2d00860a1446728f00892e19fb30f24b (patch) | |
tree | 29258b9e7515da82403abf3dfc68baabc00634bc /community/aria2/build | |
parent | f3528ed91601cc994aa7118758790063b3b62f1b (diff) | |
download | repository-347dcd3e2d00860a1446728f00892e19fb30f24b.tar.gz |
aria2: add new package at 1.35.0
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 |