Package Details: z600 1.0-4

Git Clone URL: https://aur.archlinux.org/z600.git (read-only, click to copy)
Package Base: z600
Description: Lexmark Z600 Printer Driver
Upstream URL: http://www.lexmark.com/
Licenses: custom
Submitter: None
Maintainer: TrialnError
Last Packager: TrialnError
Votes: 11
Popularity: 0.000000
First Submitted: 2005-04-28 23:16 (UTC)
Last Updated: 2016-11-27 01:19 (UTC)

Latest Comments

1 2 Next › Last »

TrialnError commented on 2016-11-27 01:22 (UTC)

Thanks for the note, Scimmia. Switched to bsdtar and dropped the now unnecessary makedeps

Scimmia commented on 2016-11-26 08:49 (UTC)

You should use bsdtar to extract the rpm files instead of the useless rpmextract wrapper.

<deleted-account> commented on 2013-09-13 01:32 (UTC)

My laptop is Toshiba Satellite AMD 64bit. Here's the PKGBUILD I used for my Lexmark z645. Thanks to alphe's comment below! Besides libcups and libstdc++5 for 64bit, I installed 'rpmextract' 'lib32-libcups' 'lib32-libstdc++5' using pacman. It works perfectly. pkgname=z600 pkgver=1.0 pkgrel=1 pkgdesc="Lexmark Z600 Printer Driver" makedepends=('rpmextract' 'gzip' 'bash') depends=('cups' 'libstdc++5') arch=('x86_64') if('arch'="x86_64");then depends=('cups''libstdc++5') fi license=('Freeware') url="http://www.lexmark.com/" source=("http://downloads.lexmark.com/downloads/cpd/CJLZ600LE-CUPS-1.0-1.TAR.gz") md5sums=('c0e35c9819b25e587e75a5a743c49f18') build() { cd $srcdir tar xf CJLZ600LE-CUPS-1.0-1.TAR.gz tail -n +143 z600cups-1.0-1.gz.sh > install.tar.gz tar xf install.tar.gz rpmextract.sh z600llpddk-2.0-1.i386.rpm rpmextract.sh z600cups-1.0-1.i386.rpm mv -f usr $pkgdir }

TrialnError commented on 2013-04-24 01:32 (UTC)

Also PKGBuilds without a package function are deprecated. Working PKGBuild http://pastie.org/7706306

<deleted-account> commented on 2013-04-14 09:22 (UTC)

Due to the recent makepkg upgrades the PKGBUILD produces an empty package. Please change $startdir/pkg and $startdir/src to $pkgdir and $srcdir respectively.

<deleted-account> commented on 2011-12-13 23:54 (UTC)

I was able to use the comment below to build and install this package on an x86_64 system. Thanks for the package and for the useful comment! Mike

alphe commented on 2011-11-30 19:41 (UTC)

I have test it with a Lexmark X1190 in a 64bit machine and it seems that it works fine. Could you please add x86_64 support as follows? arch=('i686' 'x86_64') if [ `arch` = "i686" ]; then depends=('cups' 'libstdc++5') else depends=('cups' 'lib32-libcups' 'lib32-libstdc++5') fi Thanks