blob: 790a51000d18ac622182f338155843b2de61a7bc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
# Maintainer: Cabel <mxzcabel at tuta dot com>
pkgname=brother-dcpt436w
_printer=dcpt436w
pkgver=3.6.1
pkgrel=1
pkgdesc="Driver for the Brother DCP-T436W wifi multifuncional printer"
url="https://support.brother.com/g/b/downloadtop.aspx?c=us_ot&lang=en&prod=dcpt436w_all"
license=('GPL, EULA, custom:Brother License')
arch=('x86_64')
depends=('a2ps' 'ghostscript' 'cups' 'lib32-glibc')
optdepends=('system-config-printer: A CUPS printer configuration tool and status applet'
'sane: scanning support'
'sane-airscan: SANE backend for AirScan (eSCL) and WSD document scanners'
'brscan5: scanning driver required to make the printer available to sane'
'brscan-skey: scankey support if connected via USB')
source=("https://download.brother.com/welcome/dlf106514/${_printer}pdrv-${pkgver}-1.${arch}.rpm" "spool.patch")
sha256sums=('f0ccd678ac10b739adda579f97004f80d234e9741498a96ace76c68bd6345057'
'a1ec36a6a72082b92a5866d379c4e124d16f6d407284404d4f0adaf47175e6b7')
install="${_printer}.install"
package() {
#unzip rpm file and go to pkgdir
bsdtar -xf "${_printer}pdrv-${pkgver}-1.${arch}.rpm" -C "${pkgdir}"
cd "${pkgdir}"
#used directories
_dir_opt="opt/brother/Printers/${_printer}"
_dir_model="usr/share/cups/model/Brother"
_dir_filter="usr/lib/cups/filter"
_dir_bin="usr/bin"
_dir_licenses="usr/share/licenses/${pkgname}"
#include ppd file inside cups Brother's model directory
install "${_dir_opt}/cupswrapper/brother_${_printer}_printer_en.ppd" -Dm755 -t "${_dir_model}"
#include filter required by cups libraries
install "${_dir_opt}/cupswrapper/brother_lpdwrapper_${_printer}" -Dm755 -t "${_dir_filter}"
#include symbolic link for brother printer configuration
mkdir -p "${pkgdir}/${_dir_bin}"
ln -s "/${_dir_opt}/lpd/${arch}/brprintconf_${_printer}" "${_dir_opt}/lpd"
ln -s "/${_dir_opt}/lpd/brprintconf_${_printer}" "${_dir_bin}"
#install licenses inside the created brother's license directory
mkdir -p "${pkgdir}/${_dir_licenses}"
_licenses=("LICENSE_ENG.txt" "LICENSE_JPN.txt")
for license in "${_licenses[@]}" ; do
chmod 644 "${_dir_opt}/${license}"
mv "${_dir_opt}/${license}" ${_dir_licenses}
done
#apply required patch
patch -Np0 < "${srcdir}/spool.patch"
}
|