diff options
-rw-r--r-- | .SRCINFO | 21 | ||||
-rw-r--r-- | PKGBUILD | 40 | ||||
-rw-r--r-- | brother-mfc-j650dw.install | 12 |
3 files changed, 73 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO new file mode 100644 index 00000000000..80b26c1b04a --- /dev/null +++ b/.SRCINFO @@ -0,0 +1,21 @@ +pkgbase = brother-mfc-j650dw + pkgdesc = LPR and CUPS driver for the Brother MFC-J650DW + pkgver = 3.0 + pkgrel = 3 + url = http://welcome.solutions.brother.com/bsc/public_s/id/linux/en/index.html + install = brother-mfc-j650dw.install + arch = i686 + arch = x86_64 + license = unknown + makedepends = deb2targz + makedepends = perl + depends = a2ps + depends = cups + depends = lib32-glibc + source = http://www.brother.com/pub/bsc/linux/dlf/mfcj650dwlpr-3.0.0-1.i386.deb + source = http://www.brother.com/pub/bsc/linux/dlf/mfcj650dwcupswrapper-3.0.0-1.i386.deb + md5sums = 02ed3f39cc5727e935c12b58e7c12276 + md5sums = 3273138b49ad2218576126cffc43028d + +pkgname = brother-mfc-j650dw + diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 00000000000..03ddfe4b958 --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,40 @@ +# Maintainer: Rools +# Based on brother-mfc-j6510dw package from AUR + +_model="j650dw" +pkgname="brother-mfc-$_model" +pkgver="3.0" +pkgrel=3 +pkgdesc="LPR and CUPS driver for the Brother MFC-J650DW" +arch=('i686' 'x86_64') +url="http://welcome.solutions.brother.com/bsc/public_s/id/linux/en/index.html" +license=('unknown') +depends=('a2ps' 'cups') +makedepends=('deb2targz' 'perl') +if test "$CARCH" == x86_64; then + depends+=(lib32-glibc) +fi +install="brother-mfc-${_model}.install" +_revision=1 +source=("http://www.brother.com/pub/bsc/linux/dlf/mfc${_model}lpr-${pkgver}.0-${_revision}.i386.deb" + "http://www.brother.com/pub/bsc/linux/dlf/mfc${_model}cupswrapper-${pkgver}.0-${_revision}.i386.deb") + +md5sums=('02ed3f39cc5727e935c12b58e7c12276' + '3273138b49ad2218576126cffc43028d') + +build() { + deb2targz *.deb >/dev/null || return 1 + rm -f *.deb || return 1 + cd $srcdir || return 1 + [ -d "mfc${_model}" ] || (mkdir mfc${_model} || return 1) + for i in *.tar.gz;do tar xfz $i -C mfc${_model};done || return 1 + cd mfc${_model} || return 1 + cd opt/brother/Printers/mfc${_model} || return 1 + perl -i -pe 's#/etc/init.d#/etc/rc.d#g' ./cupswrapper/cupswrappermfc${_model} || return 1 + perl -i -pe 's#printcap\.local#printcap#g' $srcdir/mfc${_model}/opt/brother/Printers/mfc${_model}/inf/setupPrintcapij || return 1 +} + +package() { + cp -rf $srcdir/mfc${_model}/usr/ $pkgdir/ || return 1 + cp -rf $srcdir/mfc${_model}/opt/ $pkgdir/ || return 1 +} diff --git a/brother-mfc-j650dw.install b/brother-mfc-j650dw.install new file mode 100644 index 00000000000..c1e5a7c29ab --- /dev/null +++ b/brother-mfc-j650dw.install @@ -0,0 +1,12 @@ +post_install() { + post_upgrade; +} + +post_upgrade() { + /opt/brother/Printers/mfcj650dw/cupswrapper/cupswrappermfcj650dw >/dev/null + if [ "$?" -eq 0 ]; then + printf "\033[1m\033[32m\x3d\x3d\x3e\033\1330m Done. The printer should be visible now via the CUPS-webinterface (http://localhost:631)\n" + else + printf "\033[1m\032[32m\x3d\x3d\x3e\033\1330m Something went wrong...\n" + fi +} |