{"id":21707792,"url":"https://github.com/flightaware/tcllauncher","last_synced_at":"2026-01-04T09:02:46.454Z","repository":{"id":590365,"uuid":"224691","full_name":"flightaware/tcllauncher","owner":"flightaware","description":"This is tcllauncher, a launcher program for Tcl applications.","archived":false,"fork":false,"pushed_at":"2021-11-08T19:56:39.000Z","size":280,"stargazers_count":14,"open_issues_count":0,"forks_count":8,"subscribers_count":31,"default_branch":"master","last_synced_at":"2023-04-18T10:34:09.973Z","etag":null,"topics":["launcher","tcl","tcl-applications"],"latest_commit_sha":null,"homepage":"https://flightaware.github.io/tcllauncher/","language":"M4","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsd-3-clause","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/flightaware.png","metadata":{"files":{"readme":"README","changelog":"ChangeLog","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2009-06-11T18:39:48.000Z","updated_at":"2023-03-21T04:45:41.000Z","dependencies_parsed_at":"2022-07-07T14:21:20.581Z","dependency_job_id":null,"html_url":"https://github.com/flightaware/tcllauncher","commit_stats":null,"previous_names":[],"tags_count":9,"template":null,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/flightaware%2Ftcllauncher","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/flightaware%2Ftcllauncher/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/flightaware%2Ftcllauncher/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/flightaware%2Ftcllauncher/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/flightaware","download_url":"https://codeload.github.com/flightaware/tcllauncher/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":244657046,"owners_count":20488709,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["launcher","tcl","tcl-applications"],"created_at":"2024-11-25T22:19:17.330Z","updated_at":"2026-01-04T09:02:46.390Z","avatar_url":"https://github.com/flightaware.png","language":"M4","funding_links":[],"categories":[],"sub_categories":[],"readme":"This is tcllauncher, a launcher program for Tcl applications.\n\nThis package is a freely available open source package.  You can do\nvirtually anything you like with it, such as modifying it, redistributing\nit, and selling it either in whole or in part.  See the file\n\"license.terms\" for complete information.\n\n\nCONTENTS\n========\nThe following is a short description of the files you will find in\nthe sample extension.\n\nMakefile.in\tMakefile template.  The configure script uses this file to\n\t\tproduce the final Makefile.\n\nREADME\t\tThis file\n\naclocal.m4\tGenerated file.  Do not edit.  Autoconf uses this as input\n\t\twhen generating the final configure script.  See \"tcl.m4\"\n\t\tbelow.\n\nconfigure\tGenerated file.  Do not edit.  This must be regenerated\n\t\tanytime configure.in or tclconfig/tcl.m4 changes.\n\nconfigure.in\tConfigure script template.  Autoconf uses this file as input\n\t\tto produce the final configure script.\n\npkgIndex.tcl.in Package index template.  The configure script will use\n\t\tthis file as input to create pkgIndex.tcl.\n\nlauncher.c\tNothing.\n\nlauncher.h\tNothing.\n\ntcllauncher.c\tNothing.\n\ntclAppInit.c\tA slightly modified copy of TclAppInit.c from the Tcl\n                source code.\n\ntclconfig/\tThis directory contains various template files that build\n\t\tthe configure script.  They should not need modification.\n\n\tinstall-sh\tProgram used for copying binaries and script files\n\t\t\tto their install locations.\n\n\ttcl.m4\t\tCollection of Tcl autoconf macros.  Included by\n\t\t\taclocal.m4 to define SC_* macros.\n\nUNIX BUILD\n==========\n\nBuilding under most UNIX systems is easy, just run the configure script\nand then run make. For more information about the build process, see\nthe tcl/unix/README file in the Tcl src dist. The following minimal\nexample will install the extension in the /opt/tcl directory.\n\n\t$ cd tcllauncher\n\t$ autoconf\n\t$ ./configure --prefix=/opt/tcl\n\t$ make\n\t$ make install\n\nHINT\n====\n\nBeware it building against the source dirs instead of installed dirs and\nthen not being able to find stuff.  If, for instace, you're building in\n/usr/fa, use something like\n\n./configure --prefix=/usr/fa --with-tcl=/usr/fa/lib \n\nThe --with-tcl is important!  Otherwise it will probably find the Tcl\nsource in a parallel directory and build against that instead and\ncause problems later.\n\nWINDOWS BUILD\n=============\n\nThe recommended method to build extensions under windows is to use the\nMsys + Mingw build process. This provides a Unix-style build while\ngenerating native Windows binaries. Using the Msys + Mingw build tools\nmeans that you can use the same configure script as per the Unix build\nto create a Makefile. See the tcl/win/README file for the URL of\nthe Msys + Mingw download.\n\nIf you have VC++ then you may wish to use the files in the win\nsubdirectory and build the extension using just VC++. These files have\nbeen designed to be as generic as possible but will require some\nadditional maintenance by the project developer to synchronise with\nthe TEA configure.in and Makefile.in files. Instructions for using the\nVC++ makefile are written in the first part of the Makefile.vc\nfile.\n\nINSTALLATION\n============\n\nThe installation of a TEA package is structure like so:\n\n         $exec_prefix\n          /       \\\n        lib       bin\n         |         |\n   PACKAGEx.y   (dependent .dll files on Windows)\n         |\n  pkgIndex.tcl (.so|.dll files)\n\nThe main .so|.dll library file gets installed in the versioned PACKAGE\ndirectory, which is OK on all platforms because it will be directly\nreferenced with by 'load' in the pkgIndex.tcl file.  Dependent DLL files on\nWindows must go in the bin directory (or other directory on the user's\nPATH) in order for them to be found.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fflightaware%2Ftcllauncher","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fflightaware%2Ftcllauncher","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fflightaware%2Ftcllauncher/lists"}