"Fossies" - the Fresh Open Source Software Archive 
Member "libisoburn-1.5.4/doc/comments" (8 Jul 2020, 3139 Bytes) of package /linux/misc/libisoburn-1.5.4.tar.gz:
As a special service "Fossies" has tried to format the requested text file into HTML format (style:
standard) with prefixed line numbers.
Alternatively you can here
view or
download the uninterpreted source code file.
1 /**
2 @author Mario Danic, Vreixo Formoso, Thomas Schmitt
3
4 @mainpage Libisoburn Documentation Index
5
6 @section intro Introduction
7
8 Libburnia is an open-source project for reading, mastering and writing
9 optical discs. This page is about its capability to read, manipulate, and
10 write ISO 9660 filesystems with Rock Ridge extensions. Media can be optical
11 media or filesystem objects.
12
13 Our scope is currently Linux 2.4 and 2.6, FreeBSD, OpenSolaris, or NetBSD.
14
15 libisoburn is an add-on to libburn and libisofs which coordinates both and
16 also allows to grow ISO-9660 filesystem images on multi-session media as well
17 as on overwriteable media via the same API.
18 All media peculiarities are handled automatically.
19
20 xorriso is an application of all three libraries which creates, loads,
21 manipulates and writes ISO 9660 filesystem images with Rock Ridge extensions.
22 Manipulation is not only adding or overwriting of files but also deletion,
23 renaming, and attribute changing. An incremental backup feature is provided.
24 The xorriso features are accessible via built-in command interpreters and
25 via a C language API.
26
27
28 SONAME:
29 libisoburn.so.1 (since 0.1.0, February 2008).
30
31
32 @section using Using the libraries
33
34 Our build system is based on autotools.
35 User experience tells us that you will need at least autotools version 1.7.
36
37 To build libisoburn go into its toplevel directory and execute:
38
39 - ./bootstrap (needed if you downloaded from SVN)
40
41 - ./configure
42
43 - make
44
45 To make the library and the xorriso application accessible for running and
46 software development:
47
48 - make install
49
50
51 For direct use as command line tool use the xorriso binary which among many
52 other features provides a mkisofs emulation via command "-as mkisofs".
53 See man page xorriso/xorriso.1 or GNU info document xorriso/xorriso.info.
54
55
56 If you want to link an own application with libisoburn, you have
57 two alternative APIs for choice:
58
59 - libisoburn, together with libburn and libisofs.
60
61 - xorriso, a complete representation of xorriso command line options.
62 It encapsulates the three lower level libraries.
63 Calls of both API families shall not be mixed.
64
65 For a description of the lbisoburn API read libisoburn/libisoburn.h
66 See file README for download and installation of a release tarball.
67 You will also have to install and understand the two libraries of the
68 Libburnia project which provide fundamental services:
69 libburn is the library by which preformatted data get onto optical media.
70 See libburn/libburn.h for its API description.
71 libisofs is the library to handle ISO 9660 filesystems with Rock Ridge
72 extensions. Its API is described in libisofs/libisofs.h .
73
74 For xorriso features see its man page xorriso/xorriso.1 or
75 its GNU info document xorriso/xorriso.info.
76 For the corresponding C language API see libisoburn/xorriso.h (or
77 xorriso/xorriso.h in the build directory).
78 The implementation this API is part of libisoburn.
79 The xorriso command line tool gets installed as dynamically linked
80 binary together with libisoburn.
81
82 There is also a statically linked release named GNU xorriso.
83 See xorriso/README_gnu_xorriso for its download and installation.
84
85 */