diff options
author | Leonardo Arena <rnalrd@gmail.com> | 2011-03-31 14:01:20 +0000 |
---|---|---|
committer | Leonardo Arena <rnalrd@gmail.com> | 2011-03-31 14:01:27 +0000 |
commit | a64ce544adfeca87b8a6594dba4db1a584e22d76 (patch) | |
tree | 8550a0bb02f10265ff3ab46259c4b88a4190e3ad /main/vlc | |
parent | 4ff65ef29982e116527adebdd7ad73a05719712a (diff) | |
download | aports-a64ce544adfeca87b8a6594dba4db1a584e22d76.tar.bz2 aports-a64ce544adfeca87b8a6594dba4db1a584e22d76.tar.xz |
main/vlc: fix post-install and confd
Diffstat (limited to 'main/vlc')
-rw-r--r-- | main/vlc/APKBUILD | 2 | ||||
-rw-r--r-- | main/vlc/vlc-daemon.post-install | 2 | ||||
-rw-r--r-- | main/vlc/vlc.confd | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/main/vlc/APKBUILD b/main/vlc/APKBUILD index f5b60f984..7adac896e 100644 --- a/main/vlc/APKBUILD +++ b/main/vlc/APKBUILD @@ -2,7 +2,7 @@ # Maintainer: Natanael Copa <ncopa@alpinelinux.org> pkgname=vlc pkgver=1.1.8 -pkgrel=1 +pkgrel=2 pkgdesc="A multi-platform MPEG, VCD/DVD, and DivX player" url="http://www.videolan.org/vlc/" arch="all" diff --git a/main/vlc/vlc-daemon.post-install b/main/vlc/vlc-daemon.post-install index 934f64f50..b397f326b 100644 --- a/main/vlc/vlc-daemon.post-install +++ b/main/vlc/vlc-daemon.post-install @@ -1,2 +1,2 @@ #!/bin/sh -adduser -h /home/vlc -s /bin/sh -G audio,tty vlc &>/dev/null +adduser -h /home/vlc -s /bin/sh -G audio -G video -D vlc &>/dev/null diff --git a/main/vlc/vlc.confd b/main/vlc/vlc.confd index c0f87e4f5..3dc57ad8c 100644 --- a/main/vlc/vlc.confd +++ b/main/vlc/vlc.confd @@ -6,6 +6,6 @@ ## -vvv verbose logging ## -I dummy disable X11 interface ## --sout PARAMS encoding parameters - Do NOT quote 'PARAMS' otherwise shell expansions will broke vlc +## Do NOT quote 'PARAMS' otherwise shell expansions will broke vlc VLC_OPTS="-vvv -I dummy alsa://hw:0,0 --daemon --file-logging --logfile /var/log/vlc.log --sout #transcode{acodec=mp3,ab=48,channels=1,samplerate=22050}:std{access=http,mux=ogg,dst=:8080}" |