diff options
author | davidovski <david@davidovski.xyz> | 2022-04-17 22:07:52 +0100 |
---|---|---|
committer | davidovski <david@davidovski.xyz> | 2022-04-17 22:07:52 +0100 |
commit | c35d083dc525e223b085ec00e6863ea6eafb003c (patch) | |
tree | 5bbe25b4f92cd1821c8cbbefed9c19de6e42b98e /repo/media/pulsemixer.xibuild | |
parent | 7cc715c1249422ddf91987be64a35eef43e3e62d (diff) |
updated musl
Diffstat (limited to 'repo/media/pulsemixer.xibuild')
-rw-r--r-- | repo/media/pulsemixer.xibuild | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/repo/media/pulsemixer.xibuild b/repo/media/pulsemixer.xibuild new file mode 100644 index 0000000..79e7a74 --- /dev/null +++ b/repo/media/pulsemixer.xibuild @@ -0,0 +1,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 +} |