[arch-commits] Commit in i2c-tools/repos (2 files)
Felix Yan
felixonmars at archlinux.org
Mon Nov 4 04:09:20 UTC 2019
Date: Monday, November 4, 2019 @ 04:09:20
Author: felixonmars
Revision: 523102
archrelease: copy trunk to community-staging-x86_64
Added:
i2c-tools/repos/community-staging-x86_64/
i2c-tools/repos/community-staging-x86_64/PKGBUILD
(from rev 523101, i2c-tools/trunk/PKGBUILD)
----------+
PKGBUILD | 36 ++++++++++++++++++++++++++++++++++++
1 file changed, 36 insertions(+)
Copied: i2c-tools/repos/community-staging-x86_64/PKGBUILD (from rev 523101, i2c-tools/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD (rev 0)
+++ community-staging-x86_64/PKGBUILD 2019-11-04 04:09:20 UTC (rev 523102)
@@ -0,0 +1,36 @@
+# Maintainer: Timothy Redaelli <timothy.redaelli at gmail.com>
+# Contributor: DonVla <donvla at users.sourceforge.net>
+
+pkgname=i2c-tools
+pkgver=4.1
+pkgrel=3
+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=('python' 'git')
+optdepends=('read-edid: for decode-edid script'
+ 'python: 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
+}
+
+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"
+ rm -rf "${pkgdir}/usr/include"
+}
+
+# vim:set ts=2 sw=2 et:
More information about the arch-commits
mailing list