From b7edfa89b24599d13a3c893fe6f06da5ef799ab5 Mon Sep 17 00:00:00 2001 From: Mikhail Kolesnik Date: Fri, 15 Feb 2008 11:56:53 +0200 Subject: [PATCH] i2c-tools: initial import --- i2c-tools/.footprint | 17 +++++++++++++++++ i2c-tools/.md5sum | 1 + i2c-tools/Pkgfile | 18 ++++++++++++++++++ 3 files changed, 36 insertions(+) create mode 100644 i2c-tools/.footprint create mode 100644 i2c-tools/.md5sum create mode 100644 i2c-tools/Pkgfile diff --git a/i2c-tools/.footprint b/i2c-tools/.footprint new file mode 100644 index 000000000..e9362263e --- /dev/null +++ b/i2c-tools/.footprint @@ -0,0 +1,17 @@ +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/bin/ +-rwxr-xr-x root/root usr/bin/ddcmon +-rwxr-xr-x root/root usr/bin/decode-dimms.pl +-rwxr-xr-x root/root usr/bin/decode-edid.pl +-rwxr-xr-x root/root usr/bin/decode-vaio.pl +drwxr-xr-x root/root usr/man/ +drwxr-xr-x root/root usr/man/man8/ +-rw-r--r-- root/root usr/man/man8/i2cdetect.8.gz +-rw-r--r-- root/root usr/man/man8/i2cdump.8.gz +-rw-r--r-- root/root usr/man/man8/i2cget.8.gz +-rw-r--r-- root/root usr/man/man8/i2cset.8.gz +drwxr-xr-x root/root usr/sbin/ +-rwxr-xr-x root/root usr/sbin/i2cdetect +-rwxr-xr-x root/root usr/sbin/i2cdump +-rwxr-xr-x root/root usr/sbin/i2cget +-rwxr-xr-x root/root usr/sbin/i2cset diff --git a/i2c-tools/.md5sum b/i2c-tools/.md5sum new file mode 100644 index 000000000..18c7788b8 --- /dev/null +++ b/i2c-tools/.md5sum @@ -0,0 +1 @@ +aeaa1d5d7b35faf096e5663c5fd823dc i2c-tools-3.0.0.tar.bz2 diff --git a/i2c-tools/Pkgfile b/i2c-tools/Pkgfile new file mode 100644 index 000000000..f81d54c39 --- /dev/null +++ b/i2c-tools/Pkgfile @@ -0,0 +1,18 @@ +# Description: I2C Tools for Linux +# URL: http://www.lm-sensors.org +# Maintainer: Mikhail Kolesnik, mike at openbunker dot org +# Depends on: + +name=i2c-tools +version=3.0.0 +release=1 +source=(http://dl.lm-sensors.org/$name/releases/$name-$version.tar.bz2) + +build() { + cd $name-$version + sed -i 's|/usr/local|/usr|' Makefile + sed -i 's|/share/man|/man|' Makefile + make PREFIX=/usr + make DESTDIR=$PKG install + rm -rf $PKG/usr/include +}