mirror of
https://github.com/videolan/vlc.git
synced 2024-11-23 18:03:48 +08:00
15 lines
299 B
Bash
Executable File
15 lines
299 B
Bash
Executable File
#! /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 "$program_prefix"vlc"$program_suffix" | sed -e "$transform"` -I "$IFACE" "\$@"
|
|
EOF
|
|
|
|
chmod +x "$OUT.tmp"
|
|
mv -f -- "$OUT.tmp" "$OUT"
|