initial import

This commit is contained in:
2025-06-22 20:39:04 -05:00
commit f8a70886f0
3428 changed files with 302546 additions and 0 deletions

26
usbredir/PKGBUILD Normal file
View File

@@ -0,0 +1,26 @@
# Maintainer: Jesus E. <heckyel@riseup.net>
pkgname=usbredir
pkgver=0.8.0
pkgrel=1
pkgdesc="USB traffic redirection protocol"
arch=('i686' 'x86_64')
url="https://www.spice-space.org/spice-user-manual.html#_usb_redirection"
license=('GPL-2')
depends=('libusb')
source=(https://spice-space.org/download/usbredir/$pkgname-$pkgver.tar.bz2)
sha512sums=('976274adf08f8691b0961f5238021e988a4347873d0c67576038f44cbdaf25c2bb325d8cede0a507933b719f9715b1508ccd1d8f52fccd36f13a7640553dc108')
build() {
cd "$srcdir/$pkgname-$pkgver"
./configure --prefix=/usr
make
}
package() {
cd "$srcdir/$pkgname-$pkgver"
make DESTDIR="$pkgdir/" install
install -Dm644 COPYING -t "$pkgdir/usr/share/licenses/$pkgname"
}
# vim:set ts=2 sw=2 et: