mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-05-05 20:36:40 +02:00
testing/darkice: new aport - live audio streamer
This commit is contained in:
parent
b8ae3637eb
commit
989b2c78d0
37
testing/darkice/APKBUILD
Normal file
37
testing/darkice/APKBUILD
Normal file
@ -0,0 +1,37 @@
|
||||
# Contributor: Francesco Colista <francesco.colista@gmail.com>
|
||||
# Maintainer: Francesco Colista <francesco.colista@gmail.com>
|
||||
pkgname=darkice
|
||||
pkgver=1.0
|
||||
pkgrel=1
|
||||
pkgdesc="Live audio streamer. Records audio from an audio interface, encodes it and sends it to a streaming server"
|
||||
url="http://code.google.com/p/darkice/"
|
||||
arch="all"
|
||||
license="GPL"
|
||||
depends=
|
||||
depends_dev="alsa-lib-dev faac-dev lame-dev libvorbis-dev"
|
||||
makedepends="$depends_dev"
|
||||
install=""
|
||||
subpackages="$pkgname-doc"
|
||||
source="http://darkice.googlecode.com/files/$pkgname-$pkgver.tar.gz
|
||||
darkice.initd"
|
||||
|
||||
_builddir=$srcdir/$pkgname-$pkgver
|
||||
|
||||
build() {
|
||||
cd "$_builddir"
|
||||
./configure --prefix=/usr \
|
||||
--sysconfdir=/etc/darkice \
|
||||
--without-aacplus \
|
||||
--without-twolame
|
||||
make || return 1
|
||||
}
|
||||
|
||||
package() {
|
||||
mkdir -p "$pkgdir"/etc/$pkgname
|
||||
cd "$_builddir"
|
||||
make DESTDIR="$pkgdir" install || return 1
|
||||
install -m755 -D "$srcdir"/$pkgname.initd "$pkgdir"/etc/init.d/$pkgname
|
||||
}
|
||||
|
||||
md5sums="1804e63d42a9703d01fe378c9a77c473 darkice-1.0.tar.gz
|
||||
5a580c39bd27f82abd785dc50d126734 darkice.initd"
|
||||
24
testing/darkice/darkice.initd
Executable file
24
testing/darkice/darkice.initd
Executable file
@ -0,0 +1,24 @@
|
||||
#!/sbin/runscript
|
||||
|
||||
DARKICE_BIN="/usr/bin/darkice"
|
||||
DARKICE_OPTS="-c /etc/darkice/darkice.cfg"
|
||||
|
||||
|
||||
depend() {
|
||||
need net
|
||||
after firewall
|
||||
}
|
||||
|
||||
start() {
|
||||
ebegin "Starting DarkIce"
|
||||
start-stop-daemon --start --exec $DARKICE_BIN \
|
||||
-- $DARKICE_OPTS > /dev/null
|
||||
eend $?
|
||||
}
|
||||
|
||||
|
||||
stop() {
|
||||
ebegin "Stopping DarkIce"
|
||||
start-stop-daemon --stop --exec $DARKICE_BIN
|
||||
eend $?
|
||||
}
|
||||
Loading…
x
Reference in New Issue
Block a user