mirror of
https://github.com/mamedev/mame.git
synced 2024-11-16 07:48:32 +01:00
put license for plugins (nw)
This commit is contained in:
parent
80b569fb2b
commit
fafeeb095a
4 changed files with 11 additions and 1 deletions
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 a new issue