kiss-stj

My KISS Linux repo for software I use on my computers.
git clone https://git.stjo.hn/kiss-stj
Log | Files | Refs | README | LICENSE

commit 2415612b1111324070a2e26328182573ce1e3d07
parent 8112ee33247ef78abdad5a4f288c2453676825e7
Author: St John Karp <contact@stjo.hn>
Date:   Wed, 15 Jun 2022 08:56:45 -0400

usbip: Add new package

Packaged the usbip tools that are distributed in the kernel source.

Diffstat:
Aextra/usbip/build | 9+++++++++
Aextra/usbip/checksums | 1+
Aextra/usbip/depends | 3+++
Aextra/usbip/sources | 1+
Aextra/usbip/version | 1+
5 files changed, 15 insertions(+), 0 deletions(-)

diff --git a/extra/usbip/build b/extra/usbip/build @@ -0,0 +1,9 @@ +#!/usr/bin/env sh + +cd tools/usb/usbip +./autogen.sh +./configure \ + $KISS_CONFIGURE \ + --prefix=/usr +make +make install diff --git a/extra/usbip/checksums b/extra/usbip/checksums @@ -0,0 +1 @@ +3c7cb1fc3b029b1b765a33af9608b6f18f734246050640def019ee4c4ad6591e diff --git a/extra/usbip/depends b/extra/usbip/depends @@ -0,0 +1,3 @@ +autoconf make +automake make +libudev-zero diff --git a/extra/usbip/sources b/extra/usbip/sources @@ -0,0 +1 @@ +https://mirrors.edge.kernel.org/pub/linux/kernel/vMAJOR.x/linux-VERSION.tar.xz diff --git a/extra/usbip/version b/extra/usbip/version @@ -0,0 +1 @@ +5.15.41 1