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
|
clive-utils installation
Normally you can do "make install". This will install the scripts
in your own ~/bin/ directory. If you want to do a global install,
you can do (as root):
# make prefix=/usr install
The manual pages are installed by default, if you do not need them:
# make WITH_MAN=no install
When you uninstall, be sure to use the same prefix. For example:
# make prefix=/usr uninstall
Developers may also find the following make target useful:
man # generate clive.1 from clive (req. pod2man)
clive-utils prerequisites
- Perl 5.8+
- Config::Tiny
- WWW::Curl (4.05+)
- Tk
- Tk::Tree
- Tk::DialogBox
- HTML::TokeParser
- XML::RSS::LibXML
- URI::Escape
- HTML::Strip
- Crypt::PasswdMD5
- Crypt::Twofish
Optional (some features will be disabled without them):
- Clipboard # --paste
- Tk::FontDialog # GUI: Edit / Preferences (change font)
Note that you can install these modules from CPAN, typically (as root):
# cpan install $modulename
Many distros have made the above modules available as packages.
Getting started with clive utilities
Typical use:
% clivefeed "http://youtube.com/rss/user/communitychannel/videos.rss"
% clivescan "http://youtube.com"
Be sure to read the manual pages. See also examples/config file.
|