Skip to content

Commit

Permalink
adding older rockspecs
Browse files Browse the repository at this point in the history
  • Loading branch information
teto committed Oct 7, 2023
1 parent b79bed6 commit 7a05e9c
Show file tree
Hide file tree
Showing 2 changed files with 58 additions and 0 deletions.
29 changes: 29 additions & 0 deletions rockspecs/mimetypes-1.0.0-1.rockspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
package = "mimetypes"
version = "1.0.0-1"
source = {
url = "https://bitbucket.org/leafstorm/lua-mimetypes/get/v1.0.0.tar.gz",
dir = "lua-mimetypes"
}

description = {
summary = "A simple library for looking up the MIME types of files.",
detailed = [[
This is a simple library for guessing a file's MIME type. It includes
a (hopefully) comprehensive database of MIME types, but it allows you
to create your own should you have specific requirements. It can
guess types both by extension and by the complete filename.
]],
homepage = "https://bitbucket.org/leafstorm/lua-mimetypes/",
license = "MIT/X11"
}

dependencies = {
"lua >= 5.1"
}

build = {
type = "builtin",
modules = {
mimetypes = "mimetypes.lua"
}
}
29 changes: 29 additions & 0 deletions rockspecs/mimetypes-1.0.0-2.rockspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
package = "mimetypes"
version = "1.0.0-2"
source = {
url = "https://bitbucket.org/leafstorm/lua-mimetypes/get/v1.0.0.tar.gz",
dir = "leafstorm-lua-mimetypes-02100ff1171e"
}

description = {
summary = "A simple library for looking up the MIME types of files.",
detailed = [[
This is a simple library for guessing a file's MIME type. It includes
a (hopefully) comprehensive database of MIME types, but it allows you
to create your own should you have specific requirements. It can
guess types both by extension and by the complete filename.
]],
homepage = "https://bitbucket.org/leafstorm/lua-mimetypes/",
license = "MIT/X11"
}

dependencies = {
"lua >= 5.1"
}

build = {
type = "builtin",
modules = {
mimetypes = "mimetypes.lua"
}
}

0 comments on commit 7a05e9c

Please sign in to comment.