Re: [Slackbuilds-users] obs-studio-29.0.0.b3 fails to build

2023-02-26 Thread Christoph Willing
Sorry no - disregard my previous comment. Looking more carefully at your first email which has your directory contents, I see that the main tarball is missing. Check the info file - you also need to wget

Re: [Slackbuilds-users] obs-studio-29.0.0.b3 fails to build

2023-02-26 Thread Christoph Willing
I'm away from homebase so can't check in depth right now but I think you have downloaded the DOWNLOAD files instead of DOWNLOAD_x86_64 files. chris - Original Message - From: "SlackBuilds.org Users List" To:"SlackBuilds.org Users List" Cc: Sent:Sun, 26 Feb 2023 14:16:46 -0800 (PST)

Re: [Slackbuilds-users] obs-studio-29.0.0.b3 fails to build

2023-02-26 Thread Rich Shepard
On Sun, 26 Feb 2023, Rich Shepard wrote: The SlackBuild script is using the commit number rather than the source directory name: PRGNAM=obs-studio VERSION=${VERSION:-29.0.0.b3} COMMIT=409cfa43357c6296f53dc08e47e032284fc5fba2 Looking further in the build script I find this:

[Slackbuilds-users] obs-studio-29.0.0.b3 fails to build

2023-02-26 Thread Rich Shepard
I downloaded and installed a new directory tarball, then downloaded the 64-bit source (cef_binary_4638_linux64.tar.bz2). When root tries to build it it immediately fails: # ./obs-studio.SlackBuild tar:

[Slackbuilds-users] tailscale sbo

2023-02-26 Thread phalange
SBo devs, I have a build for the tailscale binary that I maintain for myself. Happy to maintain for SBo if there's interest. The only issue I've encountered was automatically launching tailscaled (daemon) from rc.local created an endless loop. I think because wifi was not connected when

Re: [Slackbuilds-users] conky compile error

2023-02-26 Thread Konrad J Hambrick
On Sun, Feb 26, 2023 at 1:06 PM Ozan Türkyılmaz wrote: > > Hello All, > > -DLUA_LIBRARIES=/usr/lib64/liblua5.3.so will fail on 32bit systems. It > should be: -DLUA_LIBRARIES=/usr/lib${LIBDIRSUFFIX}/liblua5.3.so > Oops ! Good Call Ozan :) Updated Patch attached Built and installed an still

Re: [Slackbuilds-users] conky compile error

2023-02-26 Thread Ozan Türkyılmaz
Hello All, -DLUA_LIBRARIES=/usr/lib64/liblua5.3.so will fail on 32bit systems. It should be: -DLUA_LIBRARIES=/usr/lib${LIBDIRSUFFIX}/liblua5.3.so Regards, Ozan ___ SlackBuilds-users mailing list SlackBuilds-users@slackbuilds.org

Re: [Slackbuilds-users] conky compile error

2023-02-26 Thread Konrad J Hambrick
On Sun, Feb 26, 2023 at 8:25 AM Luiz Carlos Ramos via SlackBuilds-users < slackbuilds-users@slackbuilds.org> wrote: > Hi, > > I could do a trick here to make it build in machines where lua 5.3 is > installed alongside lua 5.1. It is done simply adding these two lines in > the cmake invocation: >

Re: [Slackbuilds-users] conky compile error

2023-02-26 Thread Luiz Carlos Ramos via SlackBuilds-users
On Sun, Feb 26, 2023 at 11:31:52AM -0500, B. Watson wrote: > > > On Sun, 26 Feb 2023, Luiz Carlos Ramos via SlackBuilds-users wrote: > > > Hi, > > > > I could do a trick here to make it build in machines where lua 5.3 is > > installed alongside lua 5.1. It is done simply adding these two lines

Re: [Slackbuilds-users] conky compile error

2023-02-26 Thread B. Watson
On Sun, 26 Feb 2023, Luiz Carlos Ramos via SlackBuilds-users wrote: Hi, I could do a trick here to make it build in machines where lua 5.3 is installed alongside lua 5.1. It is done simply adding these two lines in the cmake invocation: -DLUA_LIBRARIES=/usr/lib64/liblua5.3.so \

Re: [Slackbuilds-users] conky compile error

2023-02-26 Thread Luiz Carlos Ramos via SlackBuilds-users
Hi, I could do a trick here to make it build in machines where lua 5.3 is installed alongside lua 5.1. It is done simply adding these two lines in the cmake invocation: -DLUA_LIBRARIES=/usr/lib64/liblua5.3.so \ -DLUA_INCLUDE_DIR=/usr/include/lua5.3 \ Don't know exactly how it works in