%global debug_package %{nil} Name: devflow Version: 0.1.2 Release: 1%{?dist} Summary: Lightweight workflow orchestrator for local development License: MIT URL: https://github.com/anandyadav3559/devflow Source0: https://github.com/anandyadav3559/devflow/archive/refs/tags/v%{version}.tar.gz BuildRequires: golang >= 1.21 BuildRequires: git %description DevFlow is a local development environment orchestrator. It lets you define multi-service workflows in YAML and run them with dependency management, logging, and easy reuse. %prep %autosetup -n %{name}-%{version} %build export CGO_CPPFLAGS="${CPPFLAGS}" export CGO_CFLAGS="${CFLAGS}" export CGO_CXXFLAGS="${CXXFLAGS}" export CGO_LDFLAGS="${LDFLAGS}" export GOFLAGS="-buildmode=pie -trimpath -mod=vendor -modcacherw" go build -ldflags="-s -w -linkmode=external" -o %{name} . %install install -Dm755 %{name} %{buildroot}%{_bindir}/%{name} %check go test ./... || : %files %license LICENSE %doc README.md %{_bindir}/%{name} %changelog * Tue Apr 14 2026 Anand Yadav - 0.1.2-1 - Initial tagged release for COPR