mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
44 lines
1.3 KiB
Bash
44 lines
1.3 KiB
Bash
# $Id$
|
|
# Maintainer: Timothy Redaelli <timothy.redaelli@gmail.com>
|
|
# Contributor: DonVla <donvla@users.sourceforge.net>
|
|
|
|
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
|
# - !makeflags because concurrency fails
|
|
|
|
pkgname=i2c-tools
|
|
pkgver=4.0
|
|
pkgrel=2
|
|
pkgdesc="Heterogeneous set of I2C tools for Linux that used to be part of lm-sensors"
|
|
arch=('x86_64')
|
|
url="http://www.lm-sensors.org/wiki/I2CTools"
|
|
license=('GPL')
|
|
depends=('perl')
|
|
makedepends=('python2' 'python' 'git')
|
|
options=('!makeflags')
|
|
optdepends=('read-edid: for decode-edid script'
|
|
'python: for smbus module'
|
|
'python2: for smbus module')
|
|
_commit=629185af1552b1866052c6973c930f1a26992dfc
|
|
source=("git+https://git.kernel.org/pub/scm/utils/i2c-tools/i2c-tools.git#commit=$_commit")
|
|
sha256sums=('SKIP')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}"
|
|
make
|
|
make -C eepromer CFLAGS="$CFLAGS -I../include"
|
|
cd py-smbus
|
|
CPPFLAGS="$CPPFLAGS -I../include" python setup.py build
|
|
CPPFLAGS="$CPPFLAGS -I../include" python2 setup.py build
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/${pkgname}"
|
|
make prefix="${pkgdir}/usr" sbindir="$pkgdir/usr/bin" install
|
|
install -Dm755 eepromer/eeprom eepromer/eepromer "${pkgdir}/usr/bin"
|
|
cd py-smbus
|
|
python setup.py install --prefix "${pkgdir}/usr"
|
|
python2 setup.py install --prefix "${pkgdir}/usr"
|
|
rm -rf "${pkgdir}/usr/include"
|
|
}
|
|
|
|
# vim:set ts=2 sw=2 et:
|