From 610d35f80f191578e29adafbb958776878d2b6b3 Mon Sep 17 00:00:00 2001 From: bryan Date: Fri, 6 Jan 2023 16:13:01 -0500 Subject: [PATCH] Move arch to dev branch --- installJRMC | 50 +++++++++++++++++++++++++------------------------- 1 file changed, 25 insertions(+), 25 deletions(-) diff --git a/installJRMC b/installJRMC index 36677b0..34efa50 100755 --- a/installJRMC +++ b/installJRMC @@ -831,32 +831,32 @@ installMesa() { installMCARCH() { debug "Running: ${FUNCNAME[0]}" echo "Arch install under construction" - [[ ! -d "$OUTPUTDIR/PKGBUILD/" ]] && mkdir -p "$OUTPUTDIR/PKGBUILD" - cat <<-EOF > "$OUTPUTDIR/PKGBUILD/mediacenter.pkgbuild" - pkgname=mediacenter$MVERSION - pkgver=$MCVERSION - pkgrel=1 - pkgdesc="The Most Comprehensive Media Software" - arch=('x86_64') - url="http://www.jriver.com/" - license=('custom') - depends=('alsa-lib' 'gcc-libs' 'libx11' 'libxext' 'libxcb' 'libxau' 'libxdmcp' 'util-linux' 'libxext' 'gtk3') - optdepends=('mesa-libgl: nouveau video support' - 'nvidia-libgl: nvidia video support' - 'nvidia-utils: nvidia vulkan support' - 'vulkan-intel: intel vulkan support' - 'vulkan-radeon: amd vulkan support' - 'vorbis-tools: ogg vorbis support' - 'musepack-tools: musepack support' - ) - source=("http://files.jriver.com/mediacenter/channels/v30/latest/MediaCenter-$MCVERSION-amd64.deb" 'License.txt') + # [[ ! -d "$OUTPUTDIR/PKGBUILD/" ]] && mkdir -p "$OUTPUTDIR/PKGBUILD" + # cat <<-EOF > "$OUTPUTDIR/PKGBUILD/mediacenter.pkgbuild" + # pkgname=mediacenter$MVERSION + # pkgver=$MCVERSION + # pkgrel=1 + # pkgdesc="The Most Comprehensive Media Software" + # arch=('x86_64') + # url="http://www.jriver.com/" + # license=('custom') + # depends=('alsa-lib' 'gcc-libs' 'libx11' 'libxext' 'libxcb' 'libxau' 'libxdmcp' 'util-linux' 'libxext' 'gtk3') + # optdepends=('mesa-libgl: nouveau video support' + # 'nvidia-libgl: nvidia video support' + # 'nvidia-utils: nvidia vulkan support' + # 'vulkan-intel: intel vulkan support' + # 'vulkan-radeon: amd vulkan support' + # 'vorbis-tools: ogg vorbis support' + # 'musepack-tools: musepack support' + # ) + # source=("http://files.jriver.com/mediacenter/channels/v30/latest/MediaCenter-$MCVERSION-amd64.deb" 'License.txt') - package() { - cd "\$srcdir" - bsdtar xf data.tar.xz -C "\$pkgdir" - install -Dm644 "License.txt" "\$pkgdir/usr/share/licenses/\$pkgname/COPYING" - } - EOF + # package() { + # cd "\$srcdir" + # bsdtar xf data.tar.xz -C "\$pkgdir" + # install -Dm644 "License.txt" "\$pkgdir/usr/share/licenses/\$pkgname/COPYING" + # } + # EOF }