Package Details: dell-c2665dnf 1.0.1-4

Git Clone URL: https://aur.archlinux.org/dell-c2665dnf.git (read-only, click to copy)
Package Base: dell-c2665dnf
Description: CUPS driver for Dell C2665dnf
Upstream URL: http://www.dell.com/support/home/us/en/19/product-support/product/dell-c2665dnf/drivers
Licenses: LicenseRef-Dell-Technologies-End-User-License-Agreement
Submitter: metalgamer
Maintainer: HurricanePootis
Last Packager: HurricanePootis
Votes: 2
Popularity: 0.000000
First Submitted: 2015-11-12 22:21 (UTC)
Last Updated: 2024-04-02 06:32 (UTC)

Latest Comments

LittleHuba commented on 2024-03-21 18:52 (UTC)

I do no longer have this printer. Hence, I can no longer maintain this package. Feel free to take it over as maintainer.

HurricanePootis commented on 2024-03-20 02:20 (UTC)

diff --git a/PKGBUILD b/PKGBUILD
index cf0e991..9331678 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -3,25 +3,20 @@

 pkgname=dell-c2665dnf
 pkgver=1.0.1
-pkgrel=1
+pkgrel=2
 pkgdesc="CUPS driver for Dell C2665dnf"
 arch=("i686" "x86_64")
 url="http://www.dell.com/support/home/us/en/19/product-support/product/dell-c2665dnf/drivers"
 license=("custom")
 depends=("lib32-libcups")
+DLAGENTS=("https::/usr/bin/curl -A 'Mozilla' -fLC - --retry 3 --retry-delay 3 -o %o %u")
 source=("https://dl.dell.com/FOLDER01815904M/1/C2665dnf-Linux-Driver.zip" "LICENSE")
-sha256sums=("4d258bd49f461c20207766f5d5542893b5c3801e676635edaf6d96c8e2006e69" "258c48bd485f6b4e1c5e05dfbce0d7d8a794ca408124124b43d43b6de6655eec")
+sha256sums=('4d258bd49f461c20207766f5d5542893b5c3801e676635edaf6d96c8e2006e69'
+            '258c48bd485f6b4e1c5e05dfbce0d7d8a794ca408124124b43d43b6de6655eec')

 prepare() {
     cd "C2665dnf-Linux-Driver"
     bsdtar -xf Dell-C2665-Color-MFP-1.0-1.i686.rpm
-
-    # Check if the license is actually still the same - bail if it is not
-    if ! $(wget -q -O - "https://www.dell.com/learn/us/en/uscorp1/legal_terms-conditions_dellgrmwebpage/art-software-license-agreements" | grep -q 'Dell EULA rev 24FEB2020')
-    then
-        echo "The packaged license is not up-to-date. Please inform maintainer!"
-        return 1
-    fi
 }

 package() {

Scimmia commented on 2016-11-21 00:36 (UTC)

Why is this using rpmextract (nearly useless) instead of bsdtar, which is already required by pacman/makepkg?