Commit 891b324b authored by Ivan Mazhukin's avatar Ivan Mazhukin Committed by Vitaly Lipatov

epm play epsonscan2: fix download; fix repack (eterbug #17865)

parent 47281de1
...@@ -14,10 +14,10 @@ pkgtype=$(epm print info -p) ...@@ -14,10 +14,10 @@ pkgtype=$(epm print info -p)
arch="$(epm print info -a)" arch="$(epm print info -a)"
case "$pkgtype-$arch" in case "$pkgtype-$arch" in
rpm-x86_64) rpm-x86_64)
PKGURL="https://download3.ebz.epson.net/dsc/f/03/00/16/14/40/9cb99579f9fa7facf54f77f0ce6fe5600677f30a/epsonscan2-bundle-6.7.70.0.x86_64.rpm.tar.gz" PKGURL="$(get_json_value "https://download-center.epson.com/api/v1/modules/?device_id=DS-770&os=RPM&region=RU&language=en" '["items",1,"url"]')"
;; ;;
*-x86_64) *-x86_64)
PKGURL="https://download3.ebz.epson.net/dsc/f/03/00/16/14/38/7b1780ace96e2c6033bbb667c7f3ed281e4e9f38/epsonscan2-bundle-6.7.70.0.x86_64.deb.tar.gz" PKGURL="$(get_json_value "https://download-center.epson.com/api/v1/modules/?device_id=DS-770&os=DEBX64&region=RU&language=en" '["items",1,"url"]')"
;; ;;
*) *)
fatal "$arch arch is not supported" fatal "$arch arch is not supported"
......
...@@ -9,5 +9,7 @@ add_unirequires udev ...@@ -9,5 +9,7 @@ add_unirequires udev
fix_desktop_file /usr/bin/epsonscan2 fix_desktop_file /usr/bin/epsonscan2
add_libs_requires # Application depends on external Qt5 libraries
add_unirequires 'libQt5Core.so.5' 'libQt5Gui.so.5' 'libQt5Widgets.so.5'
add_libs_requires
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