1*924c0c60SLexi Winter/* 2*924c0c60SLexi Winter * SPDX-License-Identifier: ISC 3*924c0c60SLexi Winter * 4*924c0c60SLexi Winter * Copyright (c) 2025 Lexi Winter <ivy@FreeBSD.org> 5*924c0c60SLexi Winter * 6*924c0c60SLexi Winter * Permission to use, copy, modify, and distribute this software for any 7*924c0c60SLexi Winter * purpose with or without fee is hereby granted, provided that the above 8*924c0c60SLexi Winter * copyright notice and this permission notice appear in all copies. 9*924c0c60SLexi Winter * 10*924c0c60SLexi Winter * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 11*924c0c60SLexi Winter * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 12*924c0c60SLexi Winter * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 13*924c0c60SLexi Winter * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 14*924c0c60SLexi Winter * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 15*924c0c60SLexi Winter * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 16*924c0c60SLexi Winter * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 17*924c0c60SLexi Winter */ 18*924c0c60SLexi Winter 19*924c0c60SLexi Wintercomment = "DEFLATE (gzip) data compression library" 20*924c0c60SLexi Winter 21*924c0c60SLexi Winterdesc = <<EOD 22*924c0c60SLexi Winterzlib implements the DEFLATE data compression algorithm, as used in the 23*924c0c60SLexi WinterGNU gzip(1) utility. DEFLATE is widely used in many situations, such 24*924c0c60SLexi Winteras network protocols (including HTTP) that need to compress data in 25*924c0c60SLexi Wintertransit, and in utilities that compress data on disk. 26*924c0c60SLexi WinterEOD 27*924c0c60SLexi Winter 28*924c0c60SLexi Winterlicenses = [ "Zlib" ] 29*924c0c60SLexi Winter 30*924c0c60SLexi Winterannotations { 31*924c0c60SLexi Winter set = "minimal,minimal-jail" 32*924c0c60SLexi Winter} 33