From 8de67b7e00bc8c691ae9b442bd31b8f73a0929e4 Mon Sep 17 00:00:00 2001 From: Kevin Mihelich Date: Sun, 27 Mar 2011 21:53:51 -0400 Subject: [PATCH] added aur/owfs --- aur/owfs/PKGBUILD | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100755 aur/owfs/PKGBUILD diff --git a/aur/owfs/PKGBUILD b/aur/owfs/PKGBUILD new file mode 100755 index 000000000..b87f49b91 --- /dev/null +++ b/aur/owfs/PKGBUILD @@ -0,0 +1,25 @@ +# Maintainer: tzervo +# Contributor: plut0nium + +plugrel=1 + +pkgname=owfs +pkgver=2.8p7 +pkgrel=1 +pkgdesc="An easy way to use the powerful 1-wire system of Dallas/Maxim." +arch=('any') +url="http://www.owfs.org" +license=('GPL') +depends=('fuse' 'swig') +provides=('owfs') +source=(http://downloads.sourceforge.net/sourceforge/owfs/$pkgname-$pkgver.tar.gz) +md5sums=('58dcd6b03de9e58cc282a63f57fcaa23') + +build() { + cd "$srcdir/$pkgname-$pkgver" + + ./configure --prefix=/usr --with-python="/usr/bin/python2" --with-pythonconfig="/usr/bin/python2-config" + make || return 1 + make DESTDIR="$pkgdir" install +} +