mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 02:22:13 +08:00
26 lines
666 B
Bash
26 lines
666 B
Bash
# Contributions from Arch:
|
|
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
|
|
# Maintainer: Stefano Facchini <stefano.facchini@gmail.com>
|
|
|
|
pkgname=usbredir
|
|
pkgver=0.8.0
|
|
pkgrel=1
|
|
pkgdesc="USB traffic redirection protocol"
|
|
arch=('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=('87bc9c5a81c982517a1bec70dc8d22e15ae197847643d58f20c0ced3c38c5e00')
|
|
|
|
build() {
|
|
cd "$srcdir/$pkgname-$pkgver"
|
|
./configure --prefix=/usr --sbindir=/usr/bin
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "$srcdir/$pkgname-$pkgver"
|
|
make DESTDIR="$pkgdir/" install
|
|
}
|