diff options
| author | ruki <[email protected]> | 2023-12-22 22:55:05 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2023-12-22 22:55:05 +0800 |
| commit | 80937fbe6cf18a5372cdadb012a92ffc3985719b (patch) | |
| tree | 7f3d725b78ffc0486e7fc02e429be143cbbb9b6c /xmake/plugins/pack/rpm/main.lua | |
| parent | e7e4a16ed6bb8e2f1db5fc28d5ad2920e3c8e41b (diff) | |
pack rpm
Diffstat (limited to 'xmake/plugins/pack/rpm/main.lua')
| -rw-r--r-- | xmake/plugins/pack/rpm/main.lua | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/xmake/plugins/pack/rpm/main.lua b/xmake/plugins/pack/rpm/main.lua new file mode 100644 index 000000000..39b5a172e --- /dev/null +++ b/xmake/plugins/pack/rpm/main.lua @@ -0,0 +1,26 @@ +--!A cross-platform build utility based on Lua +-- +-- Licensed under the Apache License, Version 2.0 (the "License"); +-- you may not use this file except in compliance with the License. +-- You may obtain a copy of the License at +-- +-- http://www.apache.org/licenses/LICENSE-2.0 +-- +-- Unless required by applicable law or agreed to in writing, software +-- distributed under the License is distributed on an "AS IS" BASIS, +-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +-- See the License for the specific language governing permissions and +-- limitations under the License. +-- +-- Copyright (C) 2015-present, TBOOX Open Source Group. +-- +-- @author ruki +-- @file main.lua +-- + +-- imports +import(".srpm") + +function main(package) + srpm(package) +end |
