~ chicken-core (chicken-5) /chicken-uninstall.mdoc
Trap1.\" Copyright (c) 2007-2022, The CHICKEN Team2.\" All rights reserved.3.\"4.\" Redistribution and use in source and binary forms, with or without5.\" modification, are permitted provided that the following conditions6.\" are met:7.\" 1. Redistributions of source code must retain the above copyright8.\" notice, this list of conditions and the following disclaimer.9.\" 2. Redistributions in binary form must reproduce the above copyright10.\" notice, this list of conditions and the following disclaimer in the11.\" documentation and/or other materials provided with the distribution.12.\" 3. The name of the authors may not be used to endorse or promote products13.\" derived from this software without specific prior written permission.14.\"15.\" THIS SOFTWARE IS PROVIDED BY THE AUTHORS ``AS IS'' AND ANY EXPRESS OR16.\" IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES17.\" OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.18.\" IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY DIRECT, INDIRECT,19.\" INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT20.\" NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,21.\" DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY22.\" THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT23.\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF24.\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.25.\"26.\"27.Dd Apr 26, 201728.Dt CHICKEN-UNINSTALL 129.Os30.Sh NAME31.Nm chicken-uninstall32.Nd uninstall extension library33.Sh SYNOPSIS34.Nm35.Op Ar OPTION ...36.Op Ar NAME ...37.Sh DESCRIPTION38.Nm39removes one or more already installed extension40libraries for the CHICKEN Scheme system.41.Ar PATTERN42may be a regular expression naming multiple extensions or just an extension name.43.Pp44The program accepts following arguments:45.Bl -tag -width Ds46.It Fl h , Fl help47Show usage and exit.48.It Fl version49Show version and exit.50.It Fl force51Don't ask, just delete whatever matches.52.It Fl match53Treat54.Ar NAME55as a glob pattern.56.It Fl s , Fl sudo57Use external program to elevate privileges for deleting files.58The program defaults to59.Xr sudo 860but can be overridden with61.Ev SUDO62environment variable.63.It Fl host64When cross-compiling, only uninstall host extensions.65.It Fl target66When cross-compiling, only uninstall target extensions.67.El68.Sh ENVIRONMENT69The following environment variables change the behaviour of70.Nm Ns :71.Bl -tag -width CHICKEN_INSTALL_REPOSITORY72.It Ev CHICKEN_INSTALL_REPOSITORY73The path where extension libraries are installed. Defaults to the74package library path selected during configuration75.Pq usually $prefix/lib/chicken/<binary-version> .76.It Ev SUDO77The command to execute when using78.Fl s79flag in command. If not provided, defaults to80.Xr sudo 8 .81.El82.Sh EXIT STATUS83.Ex -std84.Sh SEE ALSO85.Xr chicken 1 ,86.Xr chicken-install 1 ,87.Xr chicken-status 188.Pp89More information can be found in the90.Lk http://wiki.call-cc.org/manual/index "CHICKEN User's Manual".91.Sh AUTHORS92.An The CHICKEN Team93.Sh BUGS94Submit bug reports by e-mail to95.Mt chicken-janitors@nongnu.org