d6c4eb0b12
git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@1803 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd
14 lines
364 B
Bash
Executable File
14 lines
364 B
Bash
Executable File
#!/bin/sh
|
|
# Accepts directories to build packages from on the commandline, but defaults
|
|
# to building: perl-xCAT-2.0 and xCAT-client-2.0
|
|
|
|
packages="${@:-perl-xCAT xCAT-client}"
|
|
|
|
for pkg in $packages; do
|
|
mkdir -p debs/$pkg
|
|
echo Building .dsc source package for $pkg
|
|
cd $pkg
|
|
svn-buildpackage --svn-ignore --svn-lintian --svn-move-to=../debs/$pkg
|
|
cd -
|
|
done
|