mirror of
https://github.com/ostreedev/ostree.git
synced 2025-01-25 10:04:14 +03:00
1e663baad7
I'd like to enable auto-builds of this repo to https://copr.fedorainfracloud.org/coprs/g/CoreOS/continuous/ so it could eventually feed into https://github.com/coreos/fedora-coreos-tracker/issues/910.
9 lines
550 B
Makefile
9 lines
550 B
Makefile
srpm:
|
|
dnf install -y git
|
|
ci/make-git-snapshot.sh
|
|
curl -LO https://src.fedoraproject.org/rpms/ostree/raw/rawhide/f/ostree.spec
|
|
sed -ie "s,^Version:.*,Version: $$(git describe --always --tags | sed -e 's,-,\.,g' -e 's,^v,,')," ostree.spec
|
|
sed -ie 's/^Patch/# Patch/g' ostree.spec # we don't want any downstream patches
|
|
rpmbuild -bs --define "_sourcedir ${PWD}" --define "_specdir ${PWD}" --define "_builddir ${PWD}" --define "_srcrpmdir ${PWD}" --define "_rpmdir ${PWD}" --define "_buildrootdir ${PWD}/.build" ostree.spec
|
|
mv *.src.rpm $$outdir
|