File: bootstrap

package info (click to toggle)
dvdauthor 0.7.2-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,436 kB
  • sloc: ansic: 21,379; sh: 634; yacc: 460; lex: 199; makefile: 83
file content (20 lines) | stat: -rwxr-xr-x 716 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/bin/bash
#+
# Run GNU autotools stuff preparatory to building from the source tree.
#
# Execute this script with the working directory set to the top of
# the dvdauthor source tree, and it will create the configure scripts
# and other related bits and pieces.
#
# You would think "autoreconf -i" on its own would be enough, but
# unfortunately that assumes that a program using iconv also needs
# gettext as well, which is not true for DVDAuthor. So the autoreconf
# reports an error that config.rpath does not exist, which is why it
# has to be explicitly copied below.
#
# Created by Lawrence D'Oliveiro <ldo@geek-central.gen.nz>.
#-
mkdir autotools
cp /usr/share/gettext/config.rpath autotools/
autoreconf -i