mahoro.git  about / heads / tags
Ruby interface to libmagic
blob 8e8875aeb913ef1a4875b210cfc4f6eff9ff0e61 1013 bytes (raw)
$ git show HEAD:INSTALL	# shows this blob on the CLI

 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
 
libmagic installation
=====================

Mahoro is a wrapper around libmagic[1], so it needs the libmagic
development headers and libraries to run.  If your operating system
provides libmagic development libraries and headers, you will not need
the "--with-magic*" command-line options below.

For Debian-based systems: apt-get install libmagic-dev
For CentOS 6.x or similar RPM-based systems: yum install file-devel
For CentOS 5.x or similar RPM-based systems: yum install file

[1] - https://en.wikipedia.org/wiki/Libmagic

INSTALL (from RubyGems)
=======================

The installation is simple, install libmagic and type the following:

# gem install mahoro -- --with-magic-include=/path/to/include \
                        --with-magic-lib=/path/to/lib

INSTALL (from tarball)
======================

The installation is simple, install libmagic and type the following.

> ruby extconf.rb --with-magic-include=/path/to/include \
                  --with-magic-lib=/path/to/lib
> make
# make install

git clone https://yhbt.net/mahoro.git