File: buildpackages.sh

package info (click to toggle)
dbconfig-common 2.0.25
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 3,184 kB
  • sloc: sh: 1,487; makefile: 51; sql: 40; perl: 12
file content (20 lines) | stat: -rwxr-xr-x 505 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/bin/sh

set -e

packages="db-test-mysql-2.0 db-test-mysql-2.1 db-test-mysql-frontend-2.0 \
          db-test-mysql-perl-2.0 db-test-pgsql-2.0 db-test-pgsql-2.1 db-test-pgsql-2.2 \
          db-test-pgsql-migration-1.9 db-test-pgsql-migration-2.0 \
          db-test-multidbtype-2.0
          db-test-sqlite3-2.0 "

echo -n "building packages:"
for f in $packages; do
	echo -n " ($f)"	
	( 
		cd $f; 
		debian/rules binary >/dev/null;
		debian/rules clean >/dev/null;
	) 
done
echo " done.  have fun :)"