File: update-autogen

package info (click to toggle)
farstream-0.2 0.2.8-2
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 7,932 kB
  • ctags: 4,991
  • sloc: ansic: 43,088; sh: 12,143; perl: 3,055; python: 1,827; makefile: 803; xml: 692
file content (48 lines) | stat: -rw-r--r-- 990 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
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
#!/bin/bash

if [ ! -f "common/update-autogen" ]; then
  echo "Run ./common/update-autogen from the top-level source directory of a GStreamer module";
  exit 1;
fi

if ! ls -1 *.doap 2>/dev/null >/dev/null; then
  echo "Could not find *.doap file";
  exit 1;
fi

PACKAGE=`ls -1 *.doap | head -n1 | sed -e 's/.doap$//'`

#echo "Package: $PACKAGE"

DIR=`mktemp -d`
if [[ $? != 0 ]]; then
  echo "Could not create temp dir";
  exit 1;
fi

TEMP_AUTOGEN_SH="$DIR/autogen.sh"
echo "\
#!/bin/sh
#
# $PACKAGE autogen.sh
#
# Run this to generate all the initial makefiles, etc.
#
# This file has been generated from common/autogen.sh.in via common/update-autogen

" > $TEMP_AUTOGEN_SH

sed \
    -e "s/@API_VERSION@/1.0/g" \
    -e "s/@PACKAGE@/$PACKAGE/g" \
    -e "s/@SRCFILE@/$PACKAGE.doap/g" < common/autogen.sh.in >> $TEMP_AUTOGEN_SH

chmod +x $TEMP_AUTOGEN_SH

mv $TEMP_AUTOGEN_SH autogen.sh || {
  echo "Failed to update autogen.sh"
  exit 1;
}
rmdir $DIR

echo "Updated $PACKAGE autogen.sh"