Codebase list ocaml-mad / 2aa2c04
Initial release. Samuel Mimram 19 years ago
10 changed file(s) with 154 addition(s) and 0 deletion(s). Raw diff Collapse all Expand all
0 ocaml-mad (0.1.2-1) unstable; urgency=low
1
2 * Initial release, closes: #256924.
3
4 -- Samuel Mimram <samuel.mimram@ens-lyon.org> Tue, 1 Jun 2004 14:52:33 +0200
0 Source: ocaml-mad
1 Section: devel
2 Priority: optional
3 Maintainer: Samuel Mimram <samuel.mimram@ens-lyon.org>
4 Build-Depends: debhelper (>> 4.0.0), libmad0-dev, ocaml-3.07, ocaml-findlib
5 Standards-Version: 3.6.1
6
7 Package: libmad-ocaml
8 Section: libs
9 Architecture: any
10 Depends: ocaml-base-3.07, ${shlibs:Depends}
11 Description: OCaml bindings for the MAD library
12 This OCaml library interfaces the MAD C library to decode MPEG files.
13 The MAD library currently only supports the MPEG 1 standard, but fully
14 implements all three audio layers (Layer I, Layer II, and Layer III, the
15 latter often colloquially known as MP3.)
16 .
17 MAD has the following special features:
18 - 100% fixed-point (integer) computation
19 - completely new implementation based on the ISO/IEC 11172-3 standard
20 - distributed under the terms of the GNU General Public License (GPL)
21 .
22 This package contains only the shared runtime stub libraries.
23
24 Package: libmad-ocaml-dev
25 Section: libdevel
26 Architecture: any
27 Depends: ocaml-3.07, libmad0-dev, libmad-ocaml (= ${Source-Version}), ocaml-findlib
28 Description: OCaml bindings for the MAD library
29 This OCaml library interfaces the MAD C library to decode MPEG files.
30 The MAD library currently only supports the MPEG 1 standard, but fully
31 implements all three audio layers (Layer I, Layer II, and Layer III, the
32 latter often colloquially known as MP3.)
33 .
34 MAD has the following special features:
35 - 100% fixed-point (integer) computation
36 - completely new implementation based on the ISO/IEC 11172-3 standard
37 - distributed under the terms of the GNU General Public License (GPL)
38 .
39 This package contains all the development stuff you need to use ocaml-mad
40 in your programs.
0 This package was debianized by Samuel Mimram <samuel.mimram@ens-lyon.org> on
1 Sun, 2 Nov 2003 20:18:05 +0100.
2
3 It was downloaded from http://savonet.sourceforge.net/
4
5 Upstream Author: The Savonet Team <savonet-devl@lists.sourceforge.net>
6
7 Copyright (c) 2003-2004 The Savonet Team.
8
9 The ocaml-mad library is free software; you can redistribute it and/or
10 modify it under the terms of the GNU General Public License
11 (GPL) as published by the Free Software Foundation; either version
12 2 of the License, or (at your option) any later version.
13
14 The license text is contained in /usr/share/common-licenses/GPL.
0 Document: libmad-ocaml-dev
1 Title: OCaml Mad module documentation
2 Author: Samuel Mimram
3 Abstract: Documentation of the OCaml Mad module
4 Section: Apps/Programming
5
6 Format: HTML
7 Index: /usr/share/doc/libmad-ocaml-dev/html/index.html
8 Files: /usr/share/doc/libmad-ocaml-dev/html/*
0 usr/lib/ocaml/3.07/mad/META
1 usr/lib/ocaml/3.07/mad/*.a
2 usr/lib/ocaml/3.07/mad/*.cm*
3 usr/lib/ocaml/3.07/mad/*.ml*
0 usr/lib/ocaml/3.07/mad/dllmad_stubs.so usr/lib/ocaml/3.07/stublibs/
0 #!/usr/bin/make -f
1 # Sample debian/rules that uses debhelper.
2 # GNU copyright 1997 to 1999 by Joey Hess.
3
4 # Uncomment this to turn on verbose mode.
5 #export DH_VERBOSE=1
6
7 DESTDIR = $(CURDIR)/debian/tmp/usr/lib/ocaml/3.07
8
9 config.status: configure
10 dh_testdir
11 ./configure --host=$(DEB_HOST_GNU_TYPE) --build=$(DEB_BUILD_GNU_TYPE) --prefix=/usr --mandir=\$${prefix}/share/man --infodir=\$${prefix}/share/info
12
13 build: build-stamp
14 build-stamp: config.status
15 dh_testdir
16
17 $(MAKE)
18 if [ -x /usr/bin/ocamlopt ]; then $(MAKE) opt; fi
19
20 touch build-stamp
21
22 clean:
23 dh_testdir
24 dh_testroot
25 rm -f build-stamp
26
27 -$(MAKE) distclean
28 rm -f config.log config.status
29
30 dh_clean
31
32 install: build
33 dh_testdir
34 dh_testroot
35 dh_clean -k
36 dh_installdirs
37
38 mkdir -p $(DESTDIR)
39 $(MAKE) install OCAMLFIND_DESTDIR=$(DESTDIR) OCAMLFIND_LDCONF=dummy;
40 dh_install --sourcedir=debian/tmp
41 $(MAKE) doc
42
43 binary-arch: build install
44 dh_testdir
45 dh_testroot
46 dh_installchangelogs CHANGES
47 dh_installdocs
48 dh_installexamples
49 # dh_install
50 # dh_installmenu
51 # dh_installdebconf
52 # dh_installlogrotate
53 # dh_installemacsen
54 # dh_installpam
55 # dh_installmime
56 # dh_installinit
57 # dh_installcron
58 # dh_installinfo
59 # dh_installman
60 dh_link
61 dh_strip
62 dh_compress
63 dh_fixperms
64 # dh_perl
65 # dh_python
66 dh_makeshlibs
67 dh_installdeb
68 dh_shlibdeps
69 dh_gencontrol
70 dh_md5sums
71 dh_builddeb
72
73 binary: binary-arch
74 .PHONY: build clean binary-indep binary-arch binary install