mirror of
https://github.com/cookiengineer/audacity
synced 2025-08-02 08:59:28 +02:00
15 lines
295 B
Bash
15 lines
295 B
Bash
#!/usr/bin/env bash
|
|
|
|
if [ ! -d "audacity" ]
|
|
then
|
|
git clone https://github.com/audacity/audacity
|
|
fi
|
|
|
|
tar --exclude '.git' -czf /root/rpmbuild/SOURCES/audacity.tar.gz audacity
|
|
|
|
ls /root/rpmbuild/SOURCES/
|
|
|
|
rpmbuild -bs /root/rpmbuild/SPEC/audacity.spec
|
|
|
|
mock -r audacity /root/rpmbuild/SRPMS/*
|