diff options
author | root <root@rshg054.dnsready.net> | 2013-07-04 00:45:57 -0700 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2013-07-04 00:45:57 -0700 |
commit | 04b07250d0055e5cecd7c998660c5595699cfe1c (patch) | |
tree | 8697097210dfb2b705afb6ba145dafd08c476f84 /community/usbredir | |
parent | 68e8645dcd1ce619af6d92f3645c43b15bc5ac71 (diff) |
Thu Jul 4 00:45:57 PDT 2013
Diffstat (limited to 'community/usbredir')
-rw-r--r-- | community/usbredir/PKGBUILD | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/community/usbredir/PKGBUILD b/community/usbredir/PKGBUILD new file mode 100644 index 000000000..7668e5247 --- /dev/null +++ b/community/usbredir/PKGBUILD @@ -0,0 +1,28 @@ +# $Id: PKGBUILD 93438 2013-07-03 12:56:12Z spupykin $ +# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> +# Maintainer: Stefano Facchini <stefano.facchini@gmail.com> + +pkgname=usbredir +pkgver=0.6 +pkgrel=3 +pkgdesc="USB traffic redirection protocol" +arch=('i686' 'x86_64') +url="http://spice-space.org/page/UsbRedir" +license=('GPL2' 'LGPL2.1') +depends=('libusb') +options=(!libtool) +source=(http://spice-space.org/download/usbredir/$pkgname-$pkgver.tar.bz2) +sha256sums=('028184960044ea4124030000b3c55a35c3238835116e3a0fbcaff449df2c8edf') + +build() { + cd "$srcdir/$pkgname-$pkgver" + ./configure --prefix=/usr --sbindir=/usr/bin + make +} + +package() { + cd "$srcdir/$pkgname-$pkgver" + make DESTDIR="$pkgdir/" install +} + +# vim:set ts=2 sw=2 et: |