epsonscan2.sh 320 Bytes
Newer Older
1 2 3 4 5
#!/bin/sh -x
# It will run with two args: buildroot spec
BUILDROOT="$1"
SPEC="$2"

6 7
UNIREQUIRES="udev libusb-1.0.so.0"

8 9
. $(dirname $0)/common.sh

10 11 12 13
add_qt5_deps

exit

14 15 16 17 18
if epm assure patchelf ; then
for i in usr/lib64/epsonscan2/lib*.so ; do
    a= patchelf --set-rpath '$ORIGIN/' $i || continue
done
fi
19 20

set_autoreq 'yes'