mirror of
https://github.com/yuezk/GlobalProtect-openconnect.git
synced 2025-04-02 18:31:50 -04:00
* add inih * add configuration file for gpservice * Disable the UI configuration for extra args * remove VERSION_SUFFIX * remove ppa-publish.sh * Use Git repo as the source for PKGBUILD * remove VERSION_SUFFIX * Use Git repo as the source for PKGBUILD * add .install for PKGBUILD * add configuration file * Fix cmake * Fix cmake * Disable snap job * update AUR packaging * Disable the UI configuration for extra args * improve packaging script * update README.md * restart gpservice after package upgrading
15 lines
766 B
Bash
Executable File
15 lines
766 B
Bash
Executable File
#!/bin/bash -e
|
|
|
|
./scripts/snapshot-version.sh
|
|
./scripts/prepare-packaging.sh
|
|
./scripts/_archive-all.sh
|
|
|
|
# Update the OBS packaging
|
|
mv ./artifacts/obs/globalprotect-openconnect.tar.gz ./artifacts/obs/globalprotect-openconnect-snapshot.tar.gz
|
|
mv ./artifacts/obs/globalprotect-openconnect.spec ./artifacts/obs/globalprotect-openconnect-snapshot.spec
|
|
mv ./artifacts/obs/globalprotect-openconnect.changes ./artifacts/obs/globalprotect-openconnect-snapshot.changes
|
|
mv ./artifacts/obs/globalprotect-openconnect-rpmlintrc ./artifacts/obs/globalprotect-openconnect-snapshot-rpmlintrc
|
|
sed -i"" -re "s/(Name:\s+).+/\1globalprotect-openconnect-snapshot/" \
|
|
-re "s/(Conflicts:\s+).+/\1globalprotect-openconnect/" \
|
|
./artifacts/obs/globalprotect-openconnect-snapshot.spec
|