• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

doc/H03-May-2022-3,6413,251

lib/H03-May-2022-8,3495,875

m4/H03-May-2022-9,0978,169

test/H03-May-2022-2,3591,705

AUTHORSH A D11-Jun-2012115 32

COPYINGH A D11-Jun-20121.1 KiB2217

ChangeLogH A D11-Jun-20122.3 KiB7151

INSTALLH A D26-Jun-201515.4 KiB371289

Makefile.amH A D11-Jun-201251 42

Makefile.inH A D03-May-202225.3 KiB825729

NEWSH A D27-Jun-2015879 4527

READMEH A D19-Jun-20121.1 KiB4532

aclocal.m4H A D27-Jun-201556.4 KiB1,5601,416

compileH A D26-Jun-20157.2 KiB348258

config.guessH A D26-Jun-201541.9 KiB1,4211,229

config.h.inH A D27-Jun-20152.9 KiB11879

config.subH A D26-Jun-201535 KiB1,8001,662

configureH A D27-Jun-2015457.6 KiB15,77212,409

configure.acH A D27-Jun-20157.1 KiB203171

depcompH A D26-Jun-201523 KiB792502

install-shH A D26-Jun-201513.7 KiB528351

ltmain.shH A D26-Jun-2015277 KiB9,6627,310

missingH A D26-Jun-20156.7 KiB216143

test-driverH A D26-Jun-20154.2 KiB14084

README

1Libmetalink
2===========
3
4Libmetalink is a library to read Metalink XML download description
5format. It supports Metalink version 3 and Metalink version 4 (RFC
65854).
7
8Requirements
9------------
10
11The following packages are needed to build the library:
12
13* pkg-config >= 0.20
14* libexpat >= 2.1.0 or libxml2 >= 2.7.8
15
16To build and run the unit test programs, the following packages are
17needed:
18
19cunit >= 2.1
20
21Build from bzr
22--------------
23
24To build from bzr, run following commands (you need autoconf)::
25
26    $ autoreconf -i
27    $ automake --add-missing
28    $ autoconf
29    $ ./configure
30    $ make
31
32API
33---
34
35All public APIs are in metalink/metalink_parser.h,
36metalink/metalink_types.h and metalink/metalink_error.h.
37
38Please note that metalink_*_set_*, metalink_*_new and
39metalink_*_delete functions in metalink/metalink_types.h will be
40hidden from public API in the future release. The newly written
41application should not use these functions. The existing applications
42are advised to stop using these functions. If you want to hold the
43modified data of Metalink, define application specific data structure
44for this.
45