File: autogen.sh

package info (click to toggle)
alsaplayer 0.99.82-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 5,892 kB
  • sloc: ansic: 40,741; cpp: 14,400; makefile: 983; sh: 796; lex: 751; asm: 45; python: 29; sed: 16
file content (20 lines) | stat: -rwxr-xr-x 342 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#! /bin/sh

run_cmd() {
    echo -n "running $* ... "
    if ! $*; then
		echo "failed!"
		exit 1
		fi
    echo "ok"
}

run_cmd intltoolize --force --automake
run_cmd aclocal -I m4
run_cmd autoheader
run_cmd libtoolize --automake
run_cmd automake --add-missing
run_cmd autoconf
echo
echo "Now type './configure' to configure AlsaPlayer"
echo