Looking at the directory, it looks like ../lib/.libs/libescpr.so and ../lib/.libs/libescpr.so.1 exist and are symbolic links to libescpr.so.1.0.0 but that file doesn't exist anywhere in the directory.
Search Criteria
Package Details: epson-inkjet-printer-escpr 1.8.6-1
Package Actions
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: | GPL2 |
Submitter: | FFY00 |
Maintainer: | hcartiaux |
Last Packager: | hcartiaux |
Votes: | 91 |
Popularity: | 1.53 |
First Submitted: | 2019-04-26 09:00 (UTC) |
Last Updated: | 2024-10-29 10:21 (UTC) |
Latest Comments
« First ‹ Previous 1 2 3 4 5 6 7 8 9 10 .. 12 Next › Last »
msrd0 commented on 2022-09-14 11:37 (UTC)
msrd0 commented on 2022-09-14 11:32 (UTC)
The package fails to compile:
/bin/sh ../libtool --tag=CC --mode=link /usr/bin/clang -Wall -DCUPS_FILTER_NAME=\"epson-escpr\" -DCUPS_FILTER_PATH=\"/usr/lib/cups/filter\" -march=x86-64 -mtune=native -O2 -pipe -fno-plt -fexceptions -Wp,-D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -fstack-clash-protection -fcf-protection -lpthread -fuse-ld=mold -Wl,-O1,--sort-common,--as-needed,-z,relro,-z,now -o epson-escpr-wrapper epson_escpr_wrapper-wrapper.o -lcupsimage -lcups
7 warnings generated.
libtool: link: /usr/bin/clang -Wall -DCUPS_FILTER_NAME=\"epson-escpr\" -DCUPS_FILTER_PATH=\"/usr/lib/cups/filter\" -march=x86-64 -mtune=native -O2 -pipe -fno-plt -fexceptions -Wp,-D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -fstack-clash-protection -fcf-protection -fuse-ld=mold -Wl,-O1 -Wl,--sort-common -Wl,--as-needed -Wl,-z -Wl,relro -Wl,-z -Wl,now -o epson-escpr-wrapper epson_escpr_wrapper-wrapper.o -lpthread -lcupsimage -lcups
mv -f .deps/epson_escpr-filter.Tpo .deps/epson_escpr-filter.Po
/bin/sh ../libtool --tag=CC --mode=link /usr/bin/clang -I../lib -march=x86-64 -mtune=native -O2 -pipe -fno-plt -fexceptions -Wp,-D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -fstack-clash-protection -fcf-protection -lpthread -fuse-ld=mold -Wl,-O1,--sort-common,--as-needed,-z,relro,-z,now -o epson-escpr epson_escpr-filter.o epson_escpr-debug.o epson_escpr-str.o epson_escpr-err.o epson_escpr-mem.o epson_escpr-linux_cmn.o epson_escpr-xfifo.o ../lib/libescpr.la -lcupsimage -lcups
libtool: link: /usr/bin/clang -I../lib -march=x86-64 -mtune=native -O2 -pipe -fno-plt -fexceptions -Wp,-D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -fstack-clash-protection -fcf-protection -fuse-ld=mold -Wl,-O1 -Wl,--sort-common -Wl,--as-needed -Wl,-z -Wl,relro -Wl,-z -Wl,now -o .libs/epson-escpr epson_escpr-filter.o epson_escpr-debug.o epson_escpr-str.o epson_escpr-err.o epson_escpr-mem.o epson_escpr-linux_cmn.o epson_escpr-xfifo.o -lpthread ../lib/.libs/libescpr.so -lcupsimage -lcups
clang-14: error: no such file or directory: '../lib/.libs/libescpr.so'
make[2]: *** [Makefile:438: epson-escpr] Error 1
make[2]: Leaving directory '/home/msrd0/.cache/yay/epson-inkjet-printer-escpr/src/epson-inkjet-printer-escpr-1.7.21/src'
make[1]: *** [Makefile:448: all-recursive] Error 1
make[1]: Leaving directory '/home/msrd0/.cache/yay/epson-inkjet-printer-escpr/src/epson-inkjet-printer-escpr-1.7.21'
make: *** [Makefile:375: all] Error 2
==> ERROR: A failure occurred in build().
Aborting...
-> error making: epson-inkjet-printer-escpr
pipes80 commented on 2022-08-25 00:09 (UTC)
no work on sx410
brungrise commented on 2022-08-15 16:27 (UTC)
Hello everybody! I'm not sure if this is the right place to write this but version 1.7.21 of package is out. I tried to modify your PKGBUILD to compile the new version and apparently succeeded. The PKGBUILD that works for me is:
pkgname=epson-inkjet-printer-escpr
pkgver=1.7.21
pkgrel=1
pkgdesc='Epson Inkjet Printer Driver (ESC/P-R) for Linux'
arch=('x86_64' 'aarch64')
url='http://download.ebz.epson.net/dsc/search/01/search/?OSC=LX'
license=('GPL2')
depends=('cups' 'ghostscript')
source=('https://download3.ebz.epson.net/dsc/f/03/00/13/77/93/e85dc2dc266e96fdc242bd95758bd88d1a51963e/epson-inkjet-printer-escpr-1.7.21-1lsb3.2.tar.gz')
sha512sums=('de3212d1dfcf9dfcffd6af920a9eb40266563820b7ef9ce2b9a6ccea51f5199871731db5617af7fd2bc6b5942b399d4228350f19f89d90443774155b47d122ac')
prepare() {
cd $pkgname-$pkgver
}
build() {
cd $pkgname-$pkgver
mv bootstrap bootstrap.wrong
sed 's/automake/automake --add-missing/' bootstrap.wrong > bootstrap
sh bootstrap
./configure \
--prefix=/usr \
--with-cupsfilterdir=/usr/lib/cups/filter \
--with-cupsppddir=/usr/share/ppd
make
}
package() {
cd $pkgname-$pkgver
make DESTDIR="$pkgdir" install
}
aminemen commented on 2022-07-30 10:38 (UTC)
Sorry, I didn't use the sudo privilege, so I used
sudo make install
and it's ok
aminemen commented on 2022-07-30 00:08 (UTC) (edited on 2022-07-30 00:10 (UTC) by aminemen)
After executing : ./configure && make && make install,
I got the following error :
/usr/bin/install: cannot create regular file '/usr/local/lib/libescpr.so.1.0.0': Permission denied
make[2]: *** [Makefile:422: install-libLTLIBRARIES] Error 1
make[2]: Leaving directory '/home/menouer/Downloads/epson-inkjet-printer-escpr-1.7.20/lib'
make[1]: *** [Makefile:715: install-am] Error 2
make[1]: Leaving directory '/home/menouer/Downloads/epson-inkjet-printer-escpr-1.7.20/lib'
make: *** [Makefile:445: install-recursive] Error 1
and I didn't find the driver 1.7.20-1 installed. Thanks for help.
Cristophero commented on 2022-06-01 20:19 (UTC) (edited on 2022-06-01 20:22 (UTC) by Cristophero)
Add dependencies:
sudo pacman -S ipp-usb sane sane-airscan
https://archlinux.org/packages/extra/x86_64/ipp-usb/
https://archlinux.org/packages/extra/x86_64/sane/
sudo systemctl enable --now ipp-usb.service
And my EPSON L3250 printer works
hcartiaux commented on 2022-04-07 05:55 (UTC)
@electricprism, I think the et-8500 support is included in the other package epson-inkjet-printer-escpr2, look at the Epson website.
electricprism commented on 2022-04-06 23:50 (UTC)
Does this include the ET-8500 driver?
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
.