From ea7f0c6c8c44182df97e8c4bac3fd5ec7c3b84ff Mon Sep 17 00:00:00 2001 From: Kevin Mihelich Date: Fri, 14 Aug 2020 18:22:24 +0000 Subject: [PATCH] community/i2c-tools to 4.1-5 --- community/i2c-tools/PKGBUILD | 25 ++++++++++++++++--------- 1 file changed, 16 insertions(+), 9 deletions(-) diff --git a/community/i2c-tools/PKGBUILD b/community/i2c-tools/PKGBUILD index a0b4947e9..321f88f0c 100644 --- a/community/i2c-tools/PKGBUILD +++ b/community/i2c-tools/PKGBUILD @@ -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: