blob: 533b77ccbafff52c12932a8fe4c04a8da708b00d (
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
|
#!/bin/sh -e
# Run this script to sync dual lived scripts from scripts.irssi.org to scripts/
PKG_NAME="Irssi"
scriptbase=https://scripts.irssi.org/scripts
srcdir=`dirname "$0"`
test -z "$srcdir" && srcdir=.
srcdir="$srcdir"/..
if test ! -f "$srcdir"/configure.ac; then
echo -n "**Error**: Directory \`$srcdir' does not look like the"
echo " top-level $PKG_NAME directory"
exit 1
fi
dl2='curl -Ssf'
dl_it() {
echo "$1"
$dl2 -o "$srcdir/scripts/$1" "$scriptbase/$1"
}
for script in \
autoop.pl \
autorejoin.pl \
buf.pl \
dns.pl \
kills.pl \
mail.pl \
mlock.pl \
quitmsg.pl \
scriptassist.pl \
usercount.pl \
;
do
dl_it $script
done
|