mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
25 lines
671 B
Bash
25 lines
671 B
Bash
# Contributor: Evangelos Foutras <foutrelis@gmail.com>
|
|
|
|
# This package is from AUR.
|
|
# Plugbox changes: Disable tcp_wrappers in ./configure.
|
|
|
|
pkgname=usbip
|
|
pkgver=0.1.7
|
|
pkgrel=1
|
|
pkgdesc="A general USB device sharing system over IP network"
|
|
arch=('arm')
|
|
url="http://usbip.sourceforge.net/"
|
|
license=('GPL')
|
|
depends=('sysfsutils' 'tcp_wrappers' 'glib2')
|
|
options=('!libtool')
|
|
source=(http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz)
|
|
md5sums=('d1094b6d4449787864f8be001639232c')
|
|
|
|
build() {
|
|
cd "$srcdir/$pkgname-$pkgver/src"
|
|
|
|
./autogen.sh || return 1
|
|
./configure --prefix=/usr --with-tcp-wrappers=no
|
|
make || return 1
|
|
make DESTDIR="$pkgdir" install
|
|
}
|