blob: 2108e3be618d385e03848c9cbf33fbd81f2f153b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
# Maintainer: JDuch <jduch@pm.me>
pkgname=pulseaudio-virtualmic
pkgver=v0.1
pkgrel=1
pkgdesc="Use any offline or online media file or stream as a PulseAudio source"
arch=('any')
url="https://github.com/MatthiasCoppens/${pkgname}"
license=('GPL3')
depends=('pulseaudio' 'ffmpeg')
makedepends=('git')
optdepends=('coreutils: mktemp not needed when virtualmic is run with -p filename')
source=("git+${url}.git#tag=${pkgver}")
sha512sums=('SKIP')
validpgpkeys=('SKIP')
pkgver() {
cd "${srcdir}/${pkgname}"
echo "$(git describe --tag HEAD)"
}
package() {
mkdir "${pkgdir}/usr"
mkdir "${pkgdir}/usr/bin"
cp -r "${srcdir}/${pkgname}/virtualmic" "${pkgdir}/usr/bin/"
}
|