mirror of
https://github.com/holub/mame
synced 2025-04-20 23:42:22 +03:00
put license for plugins (nw)
This commit is contained in:
parent
80b569fb2b
commit
fafeeb095a
3
plugins/README.md
Normal file
3
plugins/README.md
Normal file
@ -0,0 +1,3 @@
|
||||
# **Plugins** #
|
||||
|
||||
LUA plugins contains code from various sources so license is per file.
|
@ -1,3 +1,5 @@
|
||||
-- license:BSD-3-Clause
|
||||
-- copyright-holders:Miodrag Milanovic
|
||||
require('lfs')
|
||||
local cwd = lfs.currentdir()
|
||||
package.path = cwd .. "/plugins/?.lua;" .. cwd .. "/plugins/?/init.lua"
|
||||
|
@ -1,8 +1,10 @@
|
||||
-- license:BSD-3-Clause
|
||||
-- copyright-holders:Miodrag Milanovic
|
||||
local exports = {}
|
||||
exports.name = "dummy"
|
||||
exports.version = "0.0.1"
|
||||
exports.description = "A dummy example"
|
||||
exports.license = "MIT"
|
||||
exports.license = "The BSD 3-Clause License"
|
||||
exports.author = { name = "Miodrag Milanovic" }
|
||||
|
||||
local dummy = exports
|
||||
|
@ -1,3 +1,6 @@
|
||||
-- license:MIT
|
||||
-- copyright-holders:David Kolf
|
||||
|
||||
local exports = {}
|
||||
exports.name = "luvit/json"
|
||||
exports.version = "2.5.0"
|
||||
|
Loading…
Reference in New Issue
Block a user