2931895dcf
We sign all the packages later, using make sign-all -- see the make qubes target
14 lines
277 B
Bash
Executable File
14 lines
277 B
Bash
Executable File
#!/bin/sh
|
|
NAME=$1
|
|
|
|
if [ x$NAME = x ] ; then
|
|
echo "usage $0 <template_name>"
|
|
exit 1
|
|
fi
|
|
|
|
rpmbuild --target noarch \
|
|
--define "template_name $NAME" \
|
|
--define "_topdir $PWD/rpmbuild" \
|
|
--define "_tmppath $PWD/rpmbuild/tmp" \
|
|
-bb templates.spec
|