filwip: fix build and revbump (#7380)

This commit is contained in:
augiedoggie
2022-11-06 14:28:39 -07:00
committed by GitHub
parent 20b18c6fe1
commit c1f70a9c87
2 changed files with 24 additions and 1 deletions

View File

@@ -7,10 +7,11 @@ HOMEPAGE="https://github.com/HaikuArchives/FilWip"
COPYRIGHT="2002 Ramshankar
2018 HaikuArchives team"
LICENSE="SPL"
REVISION="1"
REVISION="2"
SOURCE_URI="$HOMEPAGE/archive/v$portVersion.tar.gz"
CHECKSUM_SHA256="67ca2d8152a5458b3d5622a260c6fdc5ff2ed8ed4098b257d5a5061e7385f664"
SOURCE_DIR="FilWip-$portVersion"
PATCHES="filwip-$portVersion.patchset"
ADDITIONAL_FILES="install_plugins.sh"
ARCHITECTURES="all"

View File

@@ -0,0 +1,22 @@
From 3a758dc3fcc035a61401231f5538441635d437e2 Mon Sep 17 00:00:00 2001
From: Chris Roberts <cpr420@gmail.com>
Date: Sun, 6 Nov 2022 14:22:58 -0700
Subject: add libshared to LIBS
diff --git a/Source/Makefile b/Source/Makefile
index 395cb20..603c6a9 100644
--- a/Source/Makefile
+++ b/Source/Makefile
@@ -65,7 +65,7 @@ RSRCS =
# - if your library does not follow the standard library naming scheme,
# you need to specify the path to the library and it's name.
# (e.g. for mylib.a, specify "mylib.a" or "path/mylib.a")
-LIBS = be columnlistview translation tracker $(STDCPPLIBS)
+LIBS = be columnlistview translation tracker shared $(STDCPPLIBS)
# Specify additional paths to directories following the standard libXXX.so
# or libXXX.a naming scheme. You can specify full paths or paths relative
--
2.37.3