mirror of
https://github.com/videolan/vlc.git
synced 2024-11-27 03:47:46 +08:00
15 lines
265 B
Plaintext
15 lines
265 B
Plaintext
|
#! /bin/sh
|
||
|
# Interface alias build script for VLC
|
||
|
# Copyright © 2007 Rémi Denis-Courmont.
|
||
|
|
||
|
OUT="$1"
|
||
|
IFACE="$2"
|
||
|
|
||
|
cat > "$OUT.tmp" << EOF
|
||
|
#! /bin/sh
|
||
|
exec $bindir/`echo vlc | sed -e "$transform"` -I "$IFACE" "\$@"
|
||
|
EOF
|
||
|
|
||
|
chmod +x "$OUT.tmp"
|
||
|
mv -f -- "$OUT.tmp" "$OUT"
|