add64aa2e4
Split $DIST to distribution name and version (builder_setup script) and search for scripts first $DIST-specific, but then for given distribution. Also move out some Fedora-specific things to scripts_fc17.
19 lines
417 B
Bash
Executable File
19 lines
417 B
Bash
Executable File
#!/bin/sh
|
|
NAME=$1
|
|
|
|
if [ x$NAME = x ] ; then
|
|
echo "usage $0 <template_name>"
|
|
exit 1
|
|
fi
|
|
|
|
. ./builder_setup
|
|
|
|
rpmbuild --target noarch \
|
|
--define "template_name $NAME" \
|
|
--define "DIST $DIST" \
|
|
--define "DISTRIBUTION $DISTRIBUTION" \
|
|
--define "VERSION $VERSION" \
|
|
--define "_topdir $PWD/rpmbuild" \
|
|
--define "_tmppath $PWD/rpmbuild/tmp" \
|
|
-bb templates.spec
|