This repository has been archived on 2023-11-07. You can view files and clone it, but cannot push or open issues or pull requests.
rpmbuild/overlay/usr/local/bin/rpmbuild

12 lines
218 B
Plaintext
Raw Normal View History

2020-06-12 08:20:39 +02:00
#!/usr/bin/env sh
2020-06-11 15:41:12 +02:00
set -eo pipefail
DIR=$(pwd)
2020-06-12 08:20:39 +02:00
mkdir -p ./dist
2020-06-11 15:48:06 +02:00
echo '%_topdir '"${DIR%/}"'/dist' > /root/.rpmmacros
2020-06-11 15:41:12 +02:00
rpmdev-setuptree
2020-06-11 15:48:06 +02:00
rsync -q -av "${DIR%/}/patch/" "${DIR%/}/dist/SOURCES"
2020-06-11 15:41:12 +02:00
exec /usr/bin/rpmbuild "$@"