summaryrefslogtreecommitdiff
path: root/community/i2c-tools
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2013-08-11 01:21:34 -0700
committerroot <root@rshg054.dnsready.net>2013-08-11 01:21:34 -0700
commit18a41d682d6e91e0d28fce23eb75292f477bd620 (patch)
treebce8f660d7d0b6541cadbc49bf1bac2434e4c0c6 /community/i2c-tools
parent0ade1da67addf154d93c6a6399b0a3d5a18a3336 (diff)
Sun Aug 11 01:21:31 PDT 2013
Diffstat (limited to 'community/i2c-tools')
-rw-r--r--community/i2c-tools/PKGBUILD34
1 files changed, 0 insertions, 34 deletions
diff --git a/community/i2c-tools/PKGBUILD b/community/i2c-tools/PKGBUILD
deleted file mode 100644
index 448c7452c..000000000
--- a/community/i2c-tools/PKGBUILD
+++ /dev/null
@@ -1,34 +0,0 @@
-# $Id: PKGBUILD 92028 2013-05-30 23:36:57Z seblu $
-# Maintainer: Timothy Redaelli <timothy.redaelli@gmail.com>
-# Contributor: DonVla <donvla@users.sourceforge.net>
-
-pkgname=i2c-tools
-pkgver=3.1.0
-pkgrel=5
-pkgdesc="Heterogeneous set of I2C tools for Linux that used to be part of lm-sensors"
-arch=('i686' 'x86_64')
-url="http://www.lm-sensors.org/wiki/I2CTools"
-license=('GPL')
-depends=('python2')
-optdepends=('read-edid: for decode-edid script')
-source=(http://dl.lm-sensors.org/${pkgname}/releases/${pkgname}-${pkgver}.tar.bz2)
-md5sums=('f15019e559e378c6e9d5d6299a00df21')
-
-build() {
- cd "${srcdir}/${pkgname}-${pkgver}"
- make
- make -C eepromer CFLAGS="$CFLAGS -I../include"
- cd py-smbus
- CPPFLAGS="$CPPFLAGS -I../include" python2 setup.py build
-}
-
-package() {
- cd "${srcdir}/${pkgname}-${pkgver}"
- make prefix="${pkgdir}/usr" sbindir="$pkgdir/usr/bin" install
- install -Dm755 eepromer/eeprog eepromer/eeprom eepromer/eepromer "${pkgdir}/usr/bin"
- cd py-smbus
- python2 setup.py install --prefix "${pkgdir}/usr"
- rm -rf "${pkgdir}/usr/include"
-}
-
-# vim:set ts=2 sw=2 et: