Skip to content

Commit c504e53

Browse files
committed
Merge branch 'master' of github.com:Audio4Linux/JDSP4Linux
2 parents dd3bdc6 + 1c361dd commit c504e53

File tree

3 files changed

+7
-6
lines changed

3 files changed

+7
-6
lines changed

.github/workflows/package-deb.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ on:
55
branches: [ master ]
66
pull_request:
77
branches: [ master ]
8+
workflow_dispatch:
89
release:
910
types:
1011
- published
@@ -165,7 +166,7 @@ jobs:
165166
args: '-o ConnectTimeout=5'
166167

167168
update-ppa:
168-
if: github.event_name == 'release'
169+
if: github.event_name == 'release' || github.event_name == 'workflow_dispatch'
169170
runs-on: ubuntu-latest
170171
needs: [build-deb-amd64]
171172
strategy:
@@ -246,7 +247,7 @@ jobs:
246247
matrix:
247248
flavor: [pulse, pipewire]
248249

249-
if: github.event_name == 'release'
250+
if: github.event_name == 'release' || github.event_name == 'workflow_dispatch'
250251

251252
steps:
252253
- name: Prepare version information (1/3)

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -209,14 +209,14 @@ If you are still using PulseAudio with your Fedora/openSUSE installation, refer
209209
Debian/Ubuntu + **PipeWire** clients only:
210210

211211
```bash
212-
sudo apt install libarchive-dev qtbase5-private-dev qtbase5-dev libqt5svg5-dev libglibmm-2.4-dev libglib2.0-dev libpipewire-0.3-dev
212+
sudo apt install build-essential libarchive-dev qtbase5-private-dev qtbase5-dev libqt5svg5-dev libglibmm-2.4-dev libglib2.0-dev libpipewire-0.3-dev
213213
```
214214
NOTE: Pipewire version 0.3 or later required. Unfortunately, this version is only in the official Ubuntu repository for Ubuntu 20.10 or later. If you use Ubuntu 20.04 or earlier, you need to compile this dependency yourself or use PulseAudio instead.
215215

216216
Debian/Ubuntu + **PulseAudio** clients only:
217217

218218
```bash
219-
sudo apt install libarchive-dev qtbase5-private-dev qtbase5-dev libqt5svg5-dev libglibmm-2.4-dev libglib2.0-dev libpulse-dev libgstreamer1.0-dev libgstreamer-plugins-good1.0-dev
219+
sudo apt install build-essential libarchive-dev qtbase5-private-dev qtbase5-dev libqt5svg5-dev libglibmm-2.4-dev libglib2.0-dev libpulse-dev libgstreamer1.0-dev libgstreamer-plugins-good1.0-dev
220220
```
221221
**Fedora**
222222

meta/build_deb_package.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ conflict=""
55
deps=""
66
if [ $2 = "pipewire" ]; then
77
conflict="jamesdsp-pulse"
8-
deps="libarchive, qtbase5-dev (>= 5.12.8), libqt5svg5 (>= 5.12.8), libglibmm-2.4-1v5, libglib2.0-0, libpipewire-0.3-0"
8+
deps="libarchive13, qtbase5-dev (>= 5.12.8), libqt5svg5 (>= 5.12.8), libglibmm-2.4-1v5, libglib2.0-0, libpipewire-0.3-0"
99
elif [ $2 = "pulse" ]; then
1010
conflict="jamesdsp-pipewire"
11-
deps="libarchive, qtbase5-dev (>= 5.12.8), libqt5svg5 (>= 5.12.8), libglibmm-2.4-1v5, libglib2.0-0, libpulse-mainloop-glib0, libgstreamer1.0-0, libgstreamer-plugins-good1.0-0"
11+
deps="libarchive13, qtbase5-dev (>= 5.12.8), libqt5svg5 (>= 5.12.8), libglibmm-2.4-1v5, libglib2.0-0, libpulse-mainloop-glib0, libgstreamer1.0-0, gstreamer1.0-plugins-good"
1212
else
1313
echo "ERROR: Unknown flavor"
1414
exit 1

0 commit comments

Comments
 (0)