Staging
v0.5.1
Revision e3d09f91ea5f24745d04f3bb8882967857986697 authored by Hugo Beauzée-Luyssen on 07 March 2016, 16:15:15 UTC, committed by Hugo Beauzée-Luyssen on 07 March 2016, 16:15:15 UTC
1 parent 6abe049
Raw File
make-alias
#! /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"
back to top