Package: lazarus-lcl-carbon Version: 2.0.12 Revision: 1 License: GPL/LGPL Distribution: 10.9 10.10 10.11 10.12 10.13 10.14 Depends: << lazarus-cocoa (>= 2.0) | lazarus-gtk2 (>= 2.0) | lazarus-qt4 (>= 2.0) | lazarus-qt5 (>= 2.0), fpc-cross-i386-darwin (>= 3.2.2) << Conflicts: lazarus-aqua Replaces: lazarus-aqua Recommends: fpc-doc, lazarus-doc Source: mirror:sourceforge:lazarus/lazarus-%v.tar.gz Source-Checksum: SHA256(ba6cef7f823a2d28166229982efc926039d42313c40e22fe0c6776c13d0015b2) SourceDirectory: lazarus UseMaxBuildJobs: false CompileScript: << #!/bin/sh -ev # Yosemite fix if [ "$(uname -r | cut -d. -f1)" -ge 14 ]; then export MACOSX_DEPLOYMENT_TARGET=10.9 ; fi debug_options="-gl" # ** Start compiling the lazarus component libraries AllUnits="registration lazutils codetools lcl basecomponents bigidecomponents" if [ "%m" = "x86_64" ]; then carbon_arch="PP=ppc386 CPU_TARGET=i386 CPU_SOURCE=i386" ; else carbon_arch="" ; fi make $AllUnits LCL_PLATFORM=carbon OPT="$debug_options" OS_TARGET=darwin $carbon_arch << InstallScript: << #!/bin/sh -ev # ** install the lcl and other libraries/units ** if [ "%m" = "x86_64" ]; then targetDir="i386-darwin" ; else targetDir="%m-darwin" ; fi for path in $(find . -name carbon | cut -f 2- -d '/' | grep $targetDir) ; do install -d $(echo %i/share/lazarus/$(dirname $path)) mv -v $path $(echo %i/share/lazarus/$(dirname $path)) done chmod -R a+rw %i/share/lazarus << Description: Carbon-based lcl for lazarus-gtk2/lazarus-qt4 DescUsage: << With this package, lazarus-qt4 and lazarus-gtk2 can also build programs with the carbon-based lcl. << DescPort: << Notes regarding the InstallScript: - find gives the list of directories - cut removes the './' from the beginning of the paths - grep removes the directories, which do not contain unit files << Homepage: https://wiki.freepascal.org/Main_Page Maintainer: Karl-Michael Schindler