mirror of
https://github.com/gyptazy/ProxLB.git
synced 2026-04-06 04:41:58 +02:00
17 lines
427 B
Bash
Executable File
17 lines
427 B
Bash
Executable File
#!/bin/bash
|
|
sudo apt-get install rpm cmake git make python3-yaml
|
|
|
|
git clone https://github.com/gyptazy/changelog-fragments-creator.git
|
|
./changelog-fragments-creator/changelog-creator -f ../.changelogs/ -o ../CHANGELOG.md
|
|
mkdir packages
|
|
mkdir build
|
|
cd build
|
|
cmake ..
|
|
cpack -G DEB .
|
|
cpack -G RPM .
|
|
cp *.deb ../packages
|
|
cp *.rpm ../packages
|
|
cd ..
|
|
rm -rf build
|
|
echo "Packages created. Packages can be found in directory: packages"
|