From 98cb4929c50e3bffd14284cd54d6add514e16428 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C4=90o=C3=A0n=20Tr=E1=BA=A7n=20C=C3=B4ng=20Danh?= Date: Sat, 30 Aug 2025 07:10:25 +0700 Subject: [PATCH] faust: build with cmake directly --- srcpkgs/faust/template | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/srcpkgs/faust/template b/srcpkgs/faust/template index 53534571f71..da9d73b243a 100644 --- a/srcpkgs/faust/template +++ b/srcpkgs/faust/template @@ -2,8 +2,12 @@ pkgname=faust version=2.70.3 revision=1 -build_style=gnu-makefile -hostmakedepends="cmake pkg-config which" +build_style=cmake +build_wrksrc=build +configure_args="-C../backends/regular.cmake -C../targets/regular.cmake + -DWORKLET=OFF -DINCLUDE_LLVM=OFF -DUSE_LLVM_CONFIG=ON + -DBUILD_HTTP_STATIC=OFF" +hostmakedepends="pkg-config" makedepends="libmicrohttpd-devel llvm-libunwind-devel" short_desc="Functional Programming Language for Real Time Signal Processing" maintainer="mag " @@ -28,5 +32,5 @@ fi post_install() { mv $PKGDESTDIR/usr/share/faust $PKGDESTDIR/usr/lib - vcopy examples usr/lib/${pkgname} + vcopy ../examples usr/lib/${pkgname} }