add mtar to oppm

This commit is contained in:
Izaya 2021-05-26 18:48:39 +10:00
parent 4c462a5d4e
commit b0df805658
1 changed files with 45 additions and 0 deletions

View File

@ -217,4 +217,49 @@
authors = "Izaya",
repo = "tree/master/"
},
["liblzss"] = {
files = {
["https://raw.githubusercontent.com/kieselsteini/lzss/master/lzss.lua"] = "/lib",
},
dependencies = {},
name = "LZSS (LempelZivStorerSzymanski) Library",
description = "Library providing LZSS compression and decompression, provided in oppm for convenience",
authors = "Sebastian Steinhauer (kieselsteini)",
repo = "tree/master/"
},
["liblz16"] = {
files = {
["https://git.shadowkat.net/izaya/OC-misc/raw/branch/master/lz16/liblz16.lua"] = "/lib",
},
dependencies = {
["liblzss"] = "",
},
name = "LZ16 Library",
description = "Stream compression library using LZSS",
authors = "Izaya",
repo = "tree/master/"
},
["libmtar"] = {
files = {
["https://git.shadowkat.net/izaya/OC-misc/src/branch/master/mtar/libmtar.lua"] = "/lib",
},
dependencies = {},
name = "MiniTel ARchive Library",
description = "Library implementing a dumb-as-rocks archive format",
authors = "Izaya",
repo = "tree/master/"
},
["mtar"] = {
files = {
["https://git.shadowkat.net/izaya/OC-misc/raw/branch/master/mtar/OpenOS/usr/bin/mtar.lua"] = "/lib",
["https://git.shadowkat.net/izaya/OC-misc/raw/branch/master/mtar/OpenOS/usr/man/mtar"] = "/man",
},
dependencies = {
["libmtar"] = "",
},
name = "MiniTel ARchiver",
description = "Dumb as rocks archiving utility",
authors = "Izaya",
repo = "tree/master/"
},
}