Staging
v0.5.1
Revision 1e0f167c78121a4c790bd92e762e8e306cf5075a authored by Hugo Beauzée-Luyssen on 10 March 2016, 09:36:06 UTC, committed by Hugo Beauzée-Luyssen on 10 March 2016, 09:36:26 UTC
1 parent 42d180b
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