community/i2c-tools to 4.1-5

This commit is contained in:
Kevin Mihelich 2020-08-14 18:22:24 +00:00
parent e1272c4000
commit ea7f0c6c8c

View file

@ -6,22 +6,30 @@
pkgname=i2c-tools
pkgver=4.1
pkgrel=4
pkgrel=5
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"
url="https://i2c.wiki.kernel.org/index.php/I2C_Tools"
license=('GPL')
depends=('perl')
makedepends=('python' 'git')
options=('!makeflags')
optdepends=('read-edid: for decode-edid script'
'python: for smbus module')
options=('!makeflags')
_commit=42b58a1f25d45859295110e9ae2f094776bddfed
source=("git+https://git.kernel.org/pub/scm/utils/i2c-tools/i2c-tools.git#commit=$_commit")
sha256sums=('SKIP')
source=(
"https://www.kernel.org/pub/software/utils/i2c-tools/$pkgname-$pkgver.tar.xz"
"https://www.kernel.org/pub/software/utils/i2c-tools/$pkgname-$pkgver.tar.sign"
)
sha256sums=(
'57b219efd183795bd545dd5a60d9eabbe9dcb6f8fb92bc7ba2122b87f98527d5'
'SKIP'
)
validpgpkeys=(
'7CA69F4460F1BDC41FD2C858A5526B9BB3CD4E6A' # Jean Delvare
)
build() {
cd "${srcdir}/${pkgname}"
cd ${pkgname}-${pkgver}
make
make -C eepromer CFLAGS="$CFLAGS -I../include"
cd py-smbus
@ -29,12 +37,11 @@ build() {
}
package() {
cd "${srcdir}/${pkgname}"
cd ${pkgname}-${pkgver}
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"
rm -rf "${pkgdir}/usr/include"
}
# vim:set ts=2 sw=2 et: