Package Details: obdautodoctor 1.8.4-2

Package Base: obdautodoctor
Description: Advanced OBD2 Software from Creosys
Upstream URL: http://www.obdautodoctor.com/desktop/
Category: system
Licenses: custom
Submitter: Nilux
Maintainer: None
Last Packager: ForeverYoung
Votes: 4
First Submitted: 2013-02-25 13:30
Last Updated: 2015-01-28 10:50

Dependencies (4)

Required by (0)

Sources

Latest Comments

Comment by ForeverYoung

2015-01-28 10:51

Adopted and updated

Comment by thebodzio

2014-07-11 22:51

# obdautodoctor: Installer: Arch
#Maintainer: Marko Paasila <marko at paasila dot net>
pkgname=obdautodoctor
pkgver=1.8.2
pkgrel=1
pkgdesc="Advanced OBD2 Software from Creosys"
arch=('any')
url="http://www.obdautodoctor.com/desktop/"
install=obdautodoctor.install
license=('custom')
depends=(qt4 bluez bluez-libs glibc)
_MACHINE_TYPE=`uname -m`
if [ ${_MACHINE_TYPE} == 'x86_64' ]; then
source=(http://www.obdautodoctor.com/downloadfile.php?file=obd-auto-doctor_${pkgver}_amd64.tar.gz)
md5sums=('8576ca709fd19360bdf0fe1f6357daea')
else
# 32-bit stuff here
source=(http://www.obdautodoctor.com/downloadfile.php?file=obd-auto-doctor_${pkgver}_i386.tar.gz)
md5sums=('7cb21d476996bb0dedb4f0fd373dc80b')
fi


build() {
return 0
}

package() {
cd $srcdir/$pkgname

#application itself
install -d $pkgdir/usr/bin
install -m755 $pkgname $pkgdir/usr/bin/

#application.desktop
install -d $pkgdir/usr/share/applications
install -m 644 $pkgname.desktop $pkgdir/usr/share/applications/

#The icon file
install -d $pkgdir/usr/share/pixmaps
install -m 644 $pkgname.png $pkgdir/usr/share/pixmaps

#The license file
install -d $pkgdir/usr/share/licenses/$pkgname
install -m 644 license.txt $pkgdir/usr/share/licenses/$pkgname/LICENSE
}

Comment by WoefulDerelict

2014-06-09 01:47

The current version appears to have changed to 1.8.2 so the package fails checking the md5sum.

Comment by Nilux

2014-02-26 06:27

Thanks, I'll add it.

Comment by Presence

2014-02-26 04:05

bluez-libs should be a dependency. Without it:
obdautodoctor: error while loading shared libraries: libbluetooth.so.3: cannot open shared object file: No such file or directory

Comment by CupIvan

2013-10-05 07:54

Update your PKGBUILD file:

# obdautodoctor: Installer: Arch
# Maintainer: Marko Paasila <marko@paasila.net>
pkgname=obdautodoctor
pkgver=1.7.0
pkgrel=1
pkgdesc="Advanced OBD2 Software from Creosys"
arch=('any')
url="http://www.obdautodoctor.com/desktop/"
install=obdautodoctor.install
license=('custom')
depends=(qt4 bluez glibc)
_MACHINE_TYPE=`uname -m`
if [ ${_MACHINE_TYPE} == 'x86_64' ]; then
source=(http://www.obdautodoctor.com/downloadfile.php?file=${pkgname}_${pkgver}_amd64.tar.gz)
md5sums=('4d2e28a71341766dbc55d7f458584c37')
else
# 32-bit stuff here
source=(http://www.obdautodoctor.com/downloadfile.php?file=${pkgname}_${pkgver}_i386.tar.gz)
md5sums=('7e668fb0107bbd0867a1ae6d015f9bb8')
fi


build() {
return 0
}

package() {
cd $srcdir/$pkgname

#application itself
install -d $pkgdir/usr/bin
install -m755 $pkgname $pkgdir/usr/bin/

#application.desktop
install -d $pkgdir/usr/share/applications
install -m 644 $pkgname.desktop $pkgdir/usr/share/applications/

#The icon file
install -d $pkgdir/usr/share/pixmaps
install -m 644 $pkgname.png $pkgdir/usr/share/pixmaps

#The license file
install -d $pkgdir/usr/share/licenses/$pkgname
install -m 644 license.txt $pkgdir/usr/share/licenses/$pkgname/LICENSE
}