initial commit

This commit is contained in:
AntiApple4life 2026-02-03 19:37:08 -05:00
commit aa12fa4c8a
3 changed files with 50 additions and 0 deletions

16
.SRCINFO Normal file
View file

@ -0,0 +1,16 @@
pkgbase = spout2pw-bin
pkgdesc = Spout2 to PipeWire bridge
pkgver = 0.1.3
pkgrel = 1
url = https://github.com/hoshinolina/spout2pw
install = instructions.install
arch = x86_64
license = LGPL-2.1-only
optdepends = obs-pwvideo: For use with OBS
provides = spout2pw
conflicts = spout2pw
options = !strip
source = https://github.com/hoshinolina/spout2pw/releases/download/0.1.3/spout2pw-0.1.3-bin.tar.gz
sha256sums = 44019e31eb500ad6487524707479831735193872f69108991afa42d3e1c8e4ae
pkgname = spout2pw-bin

23
PKGBUILD Normal file
View file

@ -0,0 +1,23 @@
# Maintainer: AntiApple4life <antiapple at antiapple.net>
_pkgname=spout2pw
pkgname=${_pkgname}-bin
pkgver=0.1.3
pkgrel=1
arch=('x86_64')
pkgdesc="Spout2 to PipeWire bridge"
url="https://github.com/hoshinolina/spout2pw"
license=('LGPL-2.1-only')
depends=()
makedepends=()
optdepends=('obs-pwvideo: For use with OBS')
provides=("${_pkgname}")
conflicts=("${_pkgname}")
options=(!strip)
install=instructions.install
source=("https://github.com/hoshinolina/spout2pw/releases/download/${pkgver}/spout2pw-${pkgver}-bin.tar.gz")
sha256sums=('44019e31eb500ad6487524707479831735193872f69108991afa42d3e1c8e4ae')
package() {
mkdir -p $pkgdir/opt/${_pkgname}
cp -r $_pkgname-$pkgver/* $pkgdir/opt/${_pkgname}
}

11
instructions.install Normal file
View file

@ -0,0 +1,11 @@
BOLD='\033[1m'
GREEN='\033[32m'
RESET='\033[0m'
post_install() {
echo
echo -e "${BOLD}spout2pw${RESET} has been installed at ${BOLD}/opt${RESET}."
echo -e "To use ${BOLD}spout2pw${RESET}, follow the instructions at:"
echo "https://github.com/hoshinolina/spout2pw/wiki"
echo
}