summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: d7bb2ef78da1b3d3cb928dc5e8bd348d0385769f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
# Maintainer: xmengnet <794508986@qq.com>
pkgname=aria2-config-script
pkgver=0.2
pkgrel=1
pkgdesc="一个自动配置Aria2的脚本,自动创建、启动服务,可直接搭配浏览器插件使用。"
arch=(any)
license=('GPL')
depends=('aria2')

source=("aria2c.service")
md5sums=(
		  '841c4eba255666216fd88c16080dd10b')

package() {
usr=`whoami`
#开始安装

file="aria2"
file_session=/etc/aria2/aria2.session
file_conf=aria2/aria2.conf
userpath=/home/$usr/Downloads
if [ ! -d "$file" ]; then
    echo "创建目录 $file"
    mkdir $file
    echo "创建文件 $file_session"
    touch $file_session
    echo "创建文件 $file_conf"
    touch $file_conf
    chmod 777 $file_session
    chmod 777 $file_conf
    echo "写入默认配置信息..."
     echo "#=========文件保存目录自行修改">> $file_conf
     echo "#username根据实际情况修改">> $file_conf
     echo "dir=$userpath">> $file_conf
     echo "disable-ipv6=true">> $file_conf
     echo "">> $file_conf
     echo "#打开rpc的目的是为了给web管理端用">> $file_conf
     echo "enable-rpc=true">> $file_conf
     echo "rpc-allow-origin-all=true">> $file_conf
     echo "rpc-listen-all=true">> $file_conf
     echo "#rpc-listen-port=6800">> $file_conf
     echo "#断点续传">> $file_conf
     echo "continue=true">> $file_conf
     echo "input-file=$file_session">> $file_conf
     echo "save-session=$file_session">> $file_conf
     echo "">> $file_conf
     echo "#最大同时下载任务数">> $file_conf
     echo "max-concurrent-downloads=20">> $file_conf
     echo "save-session-interval=120">> $file_conf
     echo "">> $file_conf
     echo "# Http/FTP 相关">> $file_conf
     echo "connect-timeout=120">> $file_conf
     echo "#lowest-speed-limit=10K">> $file_conf
     echo "#同服务器连接数">> $file_conf
     echo "max-connection-per-server=10">> $file_conf
     echo "#max-file-not-found=2">> $file_conf
     echo "#最小文件分片大小, 下载线程数上限取决于能分出多少片, 对于小文件重要">> $file_conf
     echo "min-split-size=10M">> $file_conf
     echo "#单文件最大线程数, 路由建议值: 5">> $file_conf
     echo "split=10">> $file_conf
     echo "check-certificate=false">> $file_conf
     echo "#http-no-cache=true">> $file_conf
fi
	mkdir -p ${pkgdir}/usr/lib/systemd/user/
	chmod 755 aria2c.service
	mv aria2c.service ${pkgdir}/usr/lib/systemd/user/
    chmod 755 aria2
    mkdir -p ${pkgdir}/etc/aria2
    mv aria2 ${pkgdir}/etc/
	echo "使用 ‘systemctl --user daemon-reload’ 重载systemctl 配置"
	echo "使用 ‘systemctl --user enable aria2c’ 设置开机自启"
	echo "使用 ‘systemctl --user aria2c start’ 启动服务"
	echo "上面的命令行都不需要sudo 请自行修改/etc/aria2/aria2.conf 里面的下载位置"
}