mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 02:22:13 +08:00
27 lines
671 B
Bash
27 lines
671 B
Bash
# Contributor: Sergej Pupykin <pupykin.s+arch@gmail.com>
|
|
# Contributor: Stefano Facchini <stefano.facchini@gmail.com>
|
|
|
|
pkgname=usbredir
|
|
pkgver=0.7
|
|
pkgrel=1
|
|
pkgdesc="USB traffic redirection protocol"
|
|
arch=('i686' 'x86_64')
|
|
url="http://spice-space.org/page/UsbRedir"
|
|
license=('GPL2' 'LGPL2.1')
|
|
depends=('libusb')
|
|
source=(http://spice-space.org/download/usbredir/$pkgname-$pkgver.tar.bz2)
|
|
sha256sums=('0a63a0712b5dc62be9cca44f97270fea5d1ec1fe7dde0c11dc74a01c8e2006aa')
|
|
|
|
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:
|