-
Notifications
You must be signed in to change notification settings - Fork 15
/
INSTALL
61 lines (32 loc) · 1.5 KB
/
INSTALL
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
How to install get_iplayer
I assume a unix-like system. It's doable with strawberry perl too, but you'll probably need help from someone who uses it to get it working.
There are two get_iplayers here and for each, instructions to install and run it, thus four sets of instructions.
If you just want to use it, use the simple script. If you want to develop on it, use the new version
INSTALLING THE SIMPLE SCRIPT
1. Check out the latest version from git:
git clone git://github.com/jjl/get_iplayer.git
2. Copy it to somewhere sensible and chmod it
sudo cp get_iplayer/get_iplayer /usr/local/bin
sudo chmod 755 /usr/local/bin/get_iplayer
RUNNING THE SIMPLE SCRIPT FROM WHERE IT IS
1. Check out the latest version from git:
git clone git://github.com/jjl/get_iplayer.git
2. Run it.
./get_iplayer.pl <args>
RUNNING THE NEW VERSION
1. Check out the latest version from git:
git clone git://github.com/jjl/get_iplayer.git
2. Check out the submodules
git submodule update
3. Run the main.pl script
perl main.pl <usual get_iplayer args>
INSTALLING THE NEW VERSION
If you want to do this, put down the crack pipe, it's not really ready.
1. Check out the latest version from git:
git clone git://github.com/jjl/get_iplayer.git
2. Install dependencies (do this as root, by doing `sudo -s` first)
wget -O - http://cpanmin.us | perl - Mouse MouseX::NativeTraits
(Thanks Miyagawa!)
3. Copy the script to somewhere easily accessible and make it executable
cp get_iplayer /usr/local/bin/
chmod 755 /usr/local/bin/get_iplayer