2008-10-14 18:24:53 +02:00
|
|
|
#
|
|
|
|
# This helper replaces shebang paths pointing to the correct ones
|
|
|
|
# as used by xbps. Multiple languages are supported:
|
|
|
|
#
|
|
|
|
# - GNU Bash
|
|
|
|
# - Perl
|
|
|
|
# - Python
|
|
|
|
#
|
|
|
|
|
|
|
|
bash_regexp=".*sh"
|
|
|
|
perl_regexp=".*perl[^[:space:]]*"
|
|
|
|
python_regexp=".*python[^[:space:]]*"
|
|
|
|
|
|
|
|
replace_interpreter()
|
|
|
|
{
|
|
|
|
local lang="$1"
|
|
|
|
local file="$2"
|
|
|
|
local trsb=
|
|
|
|
local orsb=
|
|
|
|
|
|
|
|
[ -z $lang -o -z $file ] && return 1
|
|
|
|
|
|
|
|
case $lang in
|
|
|
|
bash)
|
|
|
|
orsb=$bash_regexp
|
|
|
|
trpath="$XBPS_MASTERDIR/bin/bash"
|
|
|
|
;;
|
|
|
|
perl)
|
|
|
|
orsb=$perl_regexp
|
|
|
|
trpath="$XBPS_MASTERDIR/bin/perl"
|
|
|
|
;;
|
|
|
|
python)
|
|
|
|
orsb=$python_regexp
|
|
|
|
trpath="$XBPS_MASTERDIR/bin/python"
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
2008-10-14 19:22:05 +02:00
|
|
|
if [ -f $wrksrc/$file ]; then
|
|
|
|
$sed_cmd -e "1s|^#![[:space:]]*${orsb}|#!${trpath}|" \
|
|
|
|
$wrksrc/$file > $wrksrc/$file.in && \
|
|
|
|
$mv_cmd $wrksrc/$file.in $wrksrc/$file && \
|
2008-10-16 00:24:17 +02:00
|
|
|
$chmod_cmd a+x $wrksrc/$file && \
|
2008-10-14 19:22:05 +02:00
|
|
|
echo "=> Transformed $lang script: ${file##$wrksrc}."
|
2008-10-14 18:24:53 +02:00
|
|
|
else
|
2008-10-14 19:22:05 +02:00
|
|
|
echo "=> Ignoring unexistent $lang script: ${file##$wrksrc}."
|
2008-10-14 18:24:53 +02:00
|
|
|
fi
|
|
|
|
}
|