File: make-module.sh

package info (click to toggle)
libcatalyst-modules-extra-perl 6
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 124 kB
  • ctags: 5
  • sloc: perl: 186; sh: 47; makefile: 12
file content (55 lines) | stat: -rwxr-xr-x 982 bytes parent folder | download | duplicates (5)
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
49
50
51
52
53
54
55
#!/bin/sh

set -e

PERL5LIB="$DESTDIR/usr/share/perl5/"

export PERL5LIB

echo "=========================================================================="
echo "Make $1"
echo "PERL5LIB = $PERL5LIB"
echo "DESTDIR = $DESTDIR"
echo "=========================================================================="

#--- unpacking tar.gz in proper folders
if [ "$1" = "unpack" ]; then
	test -d build-area || mkdir build-area
	
	cd tarballs
	for dir in *
	do
		if [ -d $dir ]; then
			cd $dir
			for file in *.tar.gz
			do
				test -d ../../build-area/$dir || mkdir ../../build-area/$dir
				tar -C ../../build-area/$dir -xzf $file
			done
			cd ..
		fi
	done
	cd ..
else
	cd build-area
	for dir in *
	do
		if [ -d $dir ]; then
			cd $dir
			for module in *
			do
				cd ../..
				set -e
				d=build-area/$dir/$module
				dh_auto_configure -D $d
				dh_auto_build -D $d
				dh_auto_test -D $d
				dh_auto_install -D $d
				set +e
				cd build-area/$dir
			done
			cd ..
		fi
	done
	cd ..
fi