blob: 02106d5cb50c9ff7d0e7b8e237b83223360c03bb (
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
|
# Maintainer: kszonek <aur@kszonek.pl>
# AUR [brother-mfc-j200] package by kszonek <aur@kszonek.pl>
# based on brother-mfc-j220 package
pkgname="brother-mfc-j200"
_model="j200"
pkgver="3.0.0"
pkgrel=1
pkgdesc="LPR and CUPS driver for the Brother MFC-J200"
url="http://solutions.brother.com/linux/en_us/"
license=('custom:brother commercial license')
arch=('i686' 'x86_64')
depends=('cups' 'perl' 'bash')
if test "$CARCH" == x86_64; then
depends+=('lib32-glibc')
fi
install="$pkgname.install"
source=("http://www.brother.com/pub/bsc/linux/dlf/mfcj200lpr-$pkgver-$pkgrel.i386.rpm"
"http://www.brother.com/pub/bsc/linux/dlf/mfcj200cupswrapper-$pkgver-$pkgrel.i386.rpm"
)
md5sums=('f2e7c9e3515103ebde415662bbfc79e3'
'bcba51ee76ad7e665ee950b8979fb95d'
)
prepare() {
echo "unpacking"
}
package() {
mkdir -p "${pkgdir}/usr/bin"
install -m 0755 -o root -g root "${srcdir}/usr/bin/brprintconf_mfcj200" "${pkgdir}/usr/bin/brprintconf_mfcj200"
mkdir -p "${pkgdir}/opt"
cp -R "${srcdir}/opt/brother" "${pkgdir}/opt/brother"
mkdir -p "${pkgdir}/usr/lib/cups/filter"
echo "#! /opt/brother/Printers/mfcj200/lpd/filtermfcj200" > "${srcdir}/filter-shim"
install -m 0755 -o root -g root "${srcdir}/filter-shim" "${pkgdir}/usr/lib/cups/filter/brother_lpdwrapper_mfcj200"
mkdir -p "${pkgdir}/usr/share/ppd/cupsfilters"
install -m 0644 -o root -g root "${srcdir}/opt/brother/Printers/mfcj200/cupswrapper/brother_mfcj200_printer_en.ppd" "${pkgdir}/usr/share/ppd/cupsfilters"
}
|