Sorry, I didn't use the sudo privilege, so I used
sudo make install
and it's ok
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.53 |
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 8 9 10 11 .. 13 Next › Last »
Sorry, I didn't use the sudo privilege, so I used
sudo make install
and it's ok
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.
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
@electricprism, I think the et-8500 support is included in the other package epson-inkjet-printer-escpr2, look at the Epson website.
Does this include the ET-8500 driver?
@L1nx This only installs the generic driver. Perhaps you're looking for epson-printer-utility?
Sorry to bother, but I am stuck with the installation, I have a XP-352 printer/scanner. What I did so far:
git clone https://aur.archlinux.org/epson-inkjet-printer-escpr.git
cd epson-inkjet-printer-escpr
makepkg
sudo pacman -U epson-inkjet-printer-escpr-1.7.18-1-x86_64.pkg.tar.zst
That however didn't create any new programms, or at least I didn't find anything searching for "epson" under "All Applications"
I also tried running sudo ./configure && make && make install
in the folder ./src/epson-inkjet-printer-escpr-1.7.18 both as a normal user and as root. This doesn't cause any errors, but it also didn't install any new programms.
pkgbase = epson-inkjet-printer-escpr pkgdesc = Epson Inkjet Printer Driver (ESC/P-R) for Linux pkgver = 1.7.17 pkgrel = 1 url = http://download.ebz.epson.net/dsc/search/01/search/?OSC=LX arch = x86_64 arch = aarch64 arch = i686 license = GPL2 depends = cups depends = ghostscript source = https://download3.ebz.epson.net/dsc/f/03/00/12/99/78/73605b3f8aac63694fdabee6bd43389731696cd9/epson-inkjet-printer-escpr-1.7.17-1lsb3.2.tar.gz source = bug_x86_64.patch sha512sums = b28cd7aec0ab64adc0f483abd9d1c21b582cf4f71df4bdd4f04b4258d497a649b3655158ec08b951abb3958dc8b3c14bf202b810b8a8e7ad8597a5c47ac9a1fc sha512sums = 91354f7087bc9f8a9591336ee49b60bd947030ee2cf5152ba5ca117d73e6cdeca2fbdfe090478ae362aba0d021ed1ae06646a443f7ed859278ceb5cd207e2788 pkgname = epson-inkjet-printer-escpr
- Support for 32 bits. (works perfectly)
# Maintainer: Nícolas Bordignon dos Santos <nicolas.bordignon16@gmail.com>
# Co-Maintainer: Hyacinthe Cartiaux <hyacinthe.cartiaux@free.fr>
# Contributor: Bjoern Franke <bjo+aur@schafweide.org>
# Contributor: Filipe Laíns (FFY00) <lains@archlinux.org>
# Contributor: James An <james@jamesan.ca>
# Contributor: Stefano Bergamini <bergs at live dot it>
# Contributor: Heiko Baums <heiko@baums-on-web.de>
# Contributor: Quentin Foussette <quentinf7@gmail.com>
# Contributor: MetaNova
pkgname=epson-inkjet-printer-escpr
pkgver=1.7.17
pkgrel=1
pkgdesc='Epson Inkjet Printer Driver (ESC/P-R) for Linux'
arch=('i686' 'pentium4' '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/12/99/78/73605b3f8aac63694fdabee6bd43389731696cd9/epson-inkjet-printer-escpr-1.7.17-1lsb3.2.tar.gz'
'bug_x86_64.patch')
sha512sums=('b28cd7aec0ab64adc0f483abd9d1c21b582cf4f71df4bdd4f04b4258d497a649b3655158ec08b951abb3958dc8b3c14bf202b810b8a8e7ad8597a5c47ac9a1fc'
'91354f7087bc9f8a9591336ee49b60bd947030ee2cf5152ba5ca117d73e6cdeca2fbdfe090478ae362aba0d021ed1ae06646a443f7ed859278ceb5cd207e2788')
prepare() {
cd $pkgname-$pkgver
patch -p1 < ../bug_x86_64.patch
autoreconf -vif
}
build() {
cd $pkgname-$pkgver
./configure \
--prefix=/usr \
--with-cupsfilterdir=/usr/lib/cups/filter \
--with-cupsppddir=/usr/share/ppd
make
}
package() {
cd $pkgname-$pkgver
make DESTDIR="$pkgdir" install
}
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
.