PKGBUILDs/aur/owfs/PKGBUILD

33 lines
899 B
Bash
Raw Normal View History

2011-03-28 01:53:51 +00:00
# Contributor: plut0nium <charles(DOT)fourneau(AT)gmail(DOT)com >
2012-12-03 23:28:26 +00:00
# tzervo <tzervo@gmail.com>
2012-03-12 21:05:59 +00:00
pkgname="owfs"
2014-11-09 05:23:08 +00:00
pkgver=2.9p7
pkgrel=0
2011-06-09 21:51:42 +00:00
pkgdesc="An easy way to use the powerful 1-wire system of Dallas/Maxim."
2011-03-28 01:53:51 +00:00
arch=('any')
url="http://www.owfs.org"
license=('GPL')
2011-06-09 21:51:42 +00:00
groups=()
# Dependencies are not mandatory to build owserver, but:
# - fuse is needed for owfs
# - swig is needed for scripting languages bindings (perl, python...)
2014-11-09 05:23:08 +00:00
depends=('fuse' 'swig' 'python2')
makedepends=()
provides=('owfs')
conflicts=('owfs')
2011-06-09 21:51:42 +00:00
replaces=()
backup=()
options=()
install=
source=(http://downloads.sourceforge.net/sourceforge/owfs/$pkgname-$pkgver.tar.gz)
noextract=()
2014-11-09 05:23:08 +00:00
md5sums=('47808d820e6340af58ec05cfe8e220c6')
2011-03-28 01:53:51 +00:00
build() {
cd "$srcdir/$pkgname-$pkgver"
./configure --prefix=/usr --with-python="/usr/bin/python2" --with-pythonconfig="/usr/bin/python2-config"
2014-11-09 05:23:08 +00:00
make
2011-03-28 01:53:51 +00:00
make DESTDIR="$pkgdir" install
}