summaryrefslogtreecommitdiffstats
path: root/README
blob: 00e0bde9b858f655b3ff175f10c868b6406d29a3 (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
libuniso is a simple C library to extract iso9660 images on the fly

To build:

  make

To build with shared library:

  echo "ENABLE_SHARED=yes" >> config.mk
  make

To build Lua module:

  echo "ENABLE_SHARED=yes" >> config.mk
  make 

To install:

  make install

Example how to use Lua module:

require("uniso")

-- Use 0 for stdin
print(uniso.uniso(arg[1] or 0, function(current, total, filename)
	print(current, total, filename)
end))