@hcartlaux, thank you for responding. epson-inkjet-printer-escpr2-1.2.21-1.src.rpm can be downloaded from https://support.epson.net/linux/Printer/LSB_distribution_pages/en/escpr2.php
Can that be used?
Git Clone URL: | https://aur.archlinux.org/epson-inkjet-printer-escpr.git (read-only, click to copy) |
---|---|
Package Base: | epson-inkjet-printer-escpr |
Description: | Epson Inkjet Printer Driver (ESC/P-R) for Linux |
Upstream URL: | http://support.epson.net/linux/Printer/LSB_distribution_pages/en/escpr.php |
Licenses: | GPL-2.0-or-later |
Submitter: | FFY00 |
Maintainer: | hcartiaux |
Last Packager: | hcartiaux |
Votes: | 92 |
Popularity: | 0.51 |
First Submitted: | 2019-04-26 09:00 (UTC) |
Last Updated: | 2025-03-11 22:47 (UTC) |
« First ‹ Previous 1 2 3 4 5 6 7 .. 13 Next › Last »
@hcartlaux, thank you for responding. epson-inkjet-printer-escpr2-1.2.21-1.src.rpm can be downloaded from https://support.epson.net/linux/Printer/LSB_distribution_pages/en/escpr2.php
Can that be used?
@lou, this package is updated to the latest version, do you see a new one above 1.8.6?
Hi hcartiaux, Is there any chance you could update this package to the latest version? I'm rather badly needing a driver for the Epson L6290. Thank you in advance.
Fixed URL in the PKGBUILD, should work again.
Unfortunately package install fails with ==> ERROR: Failure while downloading https://download.ebz.epson.net/dsc/du/02/DriverDownloadInfo.do?LG2=JA&CN2=US&CTI=176&PRN=Linux%20src.rpm%20package&OSC=LX&DL
Unfortunately, the download URL seems to have changed, and the new one returns 403:
makepkg -si
==> Making package: epson-inkjet-printer-escpr 1.8.5-2 (Thu 19 Sep 2024 02:04:20 PM CEST)
==> Checking runtime dependencies...
==> Checking buildtime dependencies...
==> Retrieving sources...
-> Downloading epson-inkjet-printer-escpr-1.8.5-1.src.rpm...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
curl: (22) The requested URL returned error: 403
==> ERROR: Failure while downloading https://download.ebz.epson.net/dsc/du/02/DriverDownloadInfo.do?LG2=JA&CN2=US&CTI=176&PRN=Linux%20rpm%2064bit%20package&OSC=LX&DL
Aborting...
Worked pretty well on my L4160, as opposed to the package on Epson's official website (1.8.5-1).
Please add string in build()
function:
CFLAGS="${CFLAGS} -Wno-implicit-function-declaration"
for gcc 14
For anyone getting implicit declaration
errors while building - easily fixable by appending -Wno-implicit-function-declaration
to the CFLAGS
variable in your /etc/makepkg.conf
.
Getting the following errors when trying to install from the AUR:
filter.c: In function ‘epsInitJob’:
filter.c:131:9: error: implicit declaration of function ‘obsClear’ [-Wimplicit-function-declaration]
131 | obsClear();
| ^~
filter.c: In function ‘main’:
filter.c:345:15: error: implicit declaration of function ‘SetupJobAttrib’ [-Wimplicit-function-declaration]
345 | err = SetupJobAttrib(&jobAttr);
| ^~
filter.c:373:15: error: implicit declaration of function ‘SendStartJob’; did you mean ‘epsStartJob’? [-Wimplicit-function-declaration]
373 | err = SendStartJob(FALSE);
| ^~
| epsStartJob
filter.c:536:33: error: implicit declaration of function ‘PrintBand’; did you mean ‘epsPrintBand’? [-Wimplicit-function-declaration]
536 | PrintBand (rever_buf, bandBmp.widthBytes,&printHeight);
| ^
| epsPrintBand
Pinned Comments
bjo commented on 2023-07-11 12:35 (UTC)
Building packages from AUR requires
base-devel
, see https://wiki.archlinux.org/title/Arch_User_Repositorybase-devel
depends among others onautoconf
,automake
andmake
.