Page 1 of 1

Frog: Extract text from any image, video, QR Code and etc.

Posted: 14. Feb 2023, 17:12
by babam
Frog: Extract text from any image, video, QR Code and etc.
https://github.com/TenderOwl/Frog/

Thanks.

Re: Frog: Extract text from any image, video, QR Code and etc.

Posted: 15. Feb 2023, 20:17
by gapan
It shouldn't be too hard to make a package for this, but you can already get it through flathub:

Code: Select all

flatpak install flathub com.github.tenderowl.frog

Re: Frog: Extract text from any image, video, QR Code and etc.

Posted: 16. Feb 2023, 06:59
by babam
gapan wrote: 15. Feb 2023, 20:17 It shouldn't be too hard to make a package for this[/code]
Can you provide a Slackbuild Script.

Thanks.

Re: Frog: Extract text from any image, video, QR Code and etc.

Posted: 16. Feb 2023, 11:36
by djemos
Here it is a SLKBUILD. But package to run need other deps.

Code: Select all

#Packager: Dimitris Tzemos <dijemos@gmail.com>

pkgname=frog
pkgver=1.2.0
pkgrel=1dj
source=("https://github.com/TenderOwl/Frog/archive/refs/tags/$pkgver.tar.gz")
#docs=("readme" "install" "copying" "changelog" "authors" "news" "todo")
url="https://tenderowl.com/work/frog"

slackdesc=\
(
#|-----handy-ruler------------------------------------------------------|
"Frog (Intuitive text extraction tool (OCR) for GNOME.)"
)


build() {
	cd $startdir/src/Frog-$pkgver
	#sed -i 's|/app/share/|/usr/share/|g' frog/language_manager.py
	
	meson build --prefix=/usr
        meson compile -C build
  	meson install -C build --destdir "$startdir/pkg"
} 

Re: Frog: Extract text from any image, video, QR Code and etc.

Posted: 16. Feb 2023, 12:15
by babam
djemos wrote: 16. Feb 2023, 11:36 Here it is a SLKBUILD. But package to run need other deps.
Thank you, what are the required packages?
Are the packages available in the Salix repository?

Re: Frog: Extract text from any image, video, QR Code and etc.

Posted: 17. Feb 2023, 11:26
by djemos
Run frog from terminal and you see what is missing. I think required packages are not on salix repos. But i am not sure.

Re: Frog: Extract text from any image, video, QR Code and etc.

Posted: 19. Feb 2023, 11:45
by babam
djemos wrote: 17. Feb 2023, 11:26 Run frog from terminal and you see what is missing. I think required packages are not on salix repos. But i am not sure.
Finally successful to build Frog.
Image

Thanks.

Re: Frog: Extract text from any image, video, QR Code and etc.

Posted: 19. Feb 2023, 11:47
by babam
SOLVED

Re: Frog: Extract text from any image, video, QR Code and etc.

Posted: 19. Feb 2023, 16:50
by djemos
It is good to provide details about frog build which would be useful for other users.