Commit 5a2adabb authored by Vitaly Lipatov's avatar Vitaly Lipatov

epm repack.d: fix quotes

parent 1819b4cb
...@@ -7,4 +7,4 @@ SPEC="$2" ...@@ -7,4 +7,4 @@ SPEC="$2"
. $(dirname $0)/common.sh . $(dirname $0)/common.sh
# https://bugzilla.altlinux.org/show_bug.cgi?id=39099 # https://bugzilla.altlinux.org/show_bug.cgi?id=39099
filter_from_requires "\\/opt\\/Dialog" filter_from_requires '\\/opt\\/Dialog'
...@@ -54,7 +54,7 @@ rm -rfv $BUILDROOT/opt/teamviewer/tv_bin/script/teamviewerd.sysv ...@@ -54,7 +54,7 @@ rm -rfv $BUILDROOT/opt/teamviewer/tv_bin/script/teamviewerd.sysv
subst "s|.*/opt/teamviewer/tv_bin/script/teamviewerd.sysv.*||" $SPEC subst "s|.*/opt/teamviewer/tv_bin/script/teamviewerd.sysv.*||" $SPEC
# see https://bugzilla.altlinux.org/show_bug.cgi?id=39891 # see https://bugzilla.altlinux.org/show_bug.cgi?id=39891
filter_from_requires "\\/bin\\/ip" filter_from_requires '\\/bin\\/ip'
# ignore embedded libs # ignore embedded libs
filter_from_requires libQt5 filter_from_requires libQt5
......
...@@ -23,6 +23,6 @@ use_system_xdg ...@@ -23,6 +23,6 @@ use_system_xdg
install_deps install_deps
filter_from_requires "\\/opt\\/google\\/chrome\\/WidevineCdm" filter_from_requires '\\/opt\\/google\\/chrome\\/WidevineCdm'
echo "You also can install chrome via epm play chrome to use WidevineCdm" echo "You also can install chrome via epm play chrome to use WidevineCdm"
...@@ -23,6 +23,6 @@ use_system_xdg ...@@ -23,6 +23,6 @@ use_system_xdg
install_deps install_deps
filter_from_requires "\\/opt\\/google\\/chrome\\/WidevineCdm" filter_from_requires '\\/opt\\/google\\/chrome\\/WidevineCdm'
echo "You also can install chrome via epm play chrome to use WidevineCdm" echo "You also can install chrome via epm play chrome to use WidevineCdm"
#!/bin/sh
filter_from_requires()
{
local i="$1"
echo "1i%filter_from_requires /^$i.*/d"
}
filter_from_requires '\\/opt\\/google\\/chrome\\/WidevineCdm'
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment