blob: 79e7a74f6d3147d9d5d659a8194c81d6ee44863c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#!/bin/sh
NAME="pulsemixer"
DESC="CLI and curses mixer for PulseAudio"
MAKEDEPS=""
DEPS="pulseaudio
python"
PKG_VER=1.5.1
SOURCE="https://github.com/GeorgeFilipkin/pulsemixer/archive/$PKG_VER.tar.gz"
build () {
python3 setup.py build
}
package () {
python3 setup.py install --prefix=/usr --root=$PKG_DEST
}
|