i2c-tools: initial import

This commit is contained in:
Mikhail Kolesnik 2008-02-15 11:56:53 +02:00
parent 52a01183e0
commit b7edfa89b2
3 changed files with 36 additions and 0 deletions

17
i2c-tools/.footprint Normal file
View File

@ -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

1
i2c-tools/.md5sum Normal file
View File

@ -0,0 +1 @@
aeaa1d5d7b35faf096e5663c5fd823dc i2c-tools-3.0.0.tar.bz2

18
i2c-tools/Pkgfile Normal file
View File

@ -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
}