mirror of
https://github.com/badaix/snapcast.git
synced 2025-04-28 09:47:09 +02:00
Install "/etc/snapserver/certs" directory
This commit is contained in:
parent
8015325d71
commit
8096d208d5
5 changed files with 18 additions and 9 deletions
4
.github/workflows/package.yml
vendored
4
.github/workflows/package.yml
vendored
|
@ -173,7 +173,7 @@ jobs:
|
|||
- name: configure
|
||||
run: |
|
||||
echo vcpkg installation root: $env:VCPKG_INSTALLATION_ROOT
|
||||
cmake -S . -B build -G "Visual Studio 16 2019" -DCMAKE_TOOLCHAIN_FILE="$env:VCPKG_INSTALLATION_ROOT/scripts/buildsystems/vcpkg.cmake" -DVCPKG_TARGET_TRIPLET="x64-windows" -DCMAKE_BUILD_TYPE="Release" -DREVISION="${{ github.sha }}" -DWERROR=ON -DBUILD_TESTS=ON
|
||||
cmake -S . -B build -G "Visual Studio 16 2019" -DCMAKE_TOOLCHAIN_FILE="$env:VCPKG_INSTALLATION_ROOT/scripts/buildsystems/vcpkg.cmake" -DVCPKG_TARGET_TRIPLET="x64-windows" -DCMAKE_BUILD_TYPE="Release" -DREVISION="${{ github.sha }}" -DWERROR=ON
|
||||
- name: build
|
||||
run: cmake --build build --config Release --parallel 3 --verbose
|
||||
- name: installer
|
||||
|
@ -240,7 +240,7 @@ jobs:
|
|||
# #- name: ccache dump config
|
||||
# # run: ccache -p
|
||||
# - name: configure
|
||||
# run: cmake -S $GITHUB_WORKSPACE/src/snapcast -B build -DBOOST_ROOT=$GITHUB_WORKSPACE/${{env.BOOST}} -DCMAKE_BUILD_TYPE=Release -DREVISION=${{ github.sha }} -DWERROR=ON -DBUILD_TESTS=ON -DCMAKE_CXX_COMPILER_LAUNCHER=ccache -DCMAKE_CXX_FLAGS="-I/usr/local/include -Wno-deprecated-declarations"
|
||||
# run: cmake -S $GITHUB_WORKSPACE/src/snapcast -B build -DBOOST_ROOT=$GITHUB_WORKSPACE/${{env.BOOST}} -DCMAKE_BUILD_TYPE=Release -DREVISION=${{ github.sha }} -DWERROR=ON -DCMAKE_CXX_COMPILER_LAUNCHER=ccache -DCMAKE_CXX_FLAGS="-I/usr/local/include -Wno-deprecated-declarations"
|
||||
# - name: build
|
||||
# run: cmake --build build --parallel 3
|
||||
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
Placeholder for changelog
|
||||
snapcast (0.0.0-1) unstable; urgency=medium
|
||||
|
||||
Content should be created with `changelog_md2deb.py`
|
||||
* Placeholder for changelog
|
||||
Content should be created with `changelog_md2deb.py changelog.md`
|
||||
|
||||
-- Johannes Pohl <snapcast@badaix.de> Sun, 01 Jan 1970 00:00:00 +0000
|
||||
|
|
|
@ -28,13 +28,13 @@ if __name__ == "__main__":
|
|||
with open(sys.argv[1], 'r') as file:
|
||||
data = file.read()
|
||||
|
||||
data = re.sub('^\s*# Snapcast changelog *\n*',
|
||||
data = re.sub(r'^\s*# Snapcast changelog *\n*',
|
||||
'', data, flags=re.MULTILINE)
|
||||
data = re.sub('^\s*### ([a-zA-Z]+) *\n',
|
||||
data = re.sub(r'^\s*### ([a-zA-Z]+) *\n',
|
||||
r'\n * \1\n', data, flags=re.MULTILINE)
|
||||
data = re.sub('^\s*## Version\s+(\S*) *\n',
|
||||
data = re.sub(r'^\s*## Version\s+(\S*) *\n',
|
||||
r'snapcast (\1-1) unstable; urgency=medium\n', data, flags=re.MULTILINE)
|
||||
data = re.sub('^\s*-\s*(.*) *\n', r' -\1\n', data, flags=re.MULTILINE)
|
||||
data = re.sub('^_(.*)_ *\n', r' -- \1\n\n', data, flags=re.MULTILINE)
|
||||
data = re.sub(r'^\s*-\s*(.*) *\n', r' -\1\n', data, flags=re.MULTILINE)
|
||||
data = re.sub(r'^_(.*)_ *\n', r' -- \1\n\n', data, flags=re.MULTILINE)
|
||||
|
||||
print(data)
|
||||
|
|
2
extras/package/debian/snapclient.install
Normal file
2
extras/package/debian/snapclient.install
Normal file
|
@ -0,0 +1,2 @@
|
|||
usr/bin/snapclient usr/bin/
|
||||
usr/share/pixmaps/snapcast.svg usr/share/pixmaps/
|
4
extras/package/debian/snapserver.install
Normal file
4
extras/package/debian/snapserver.install
Normal file
|
@ -0,0 +1,4 @@
|
|||
usr/bin/snapserver usr/bin/
|
||||
usr/share/snapserver usr/share/
|
||||
etc/snapserver.conf etc/
|
||||
etc/snapserver etc/
|
Loading…
Add table
Reference in a new issue