diff options
| author | ruki <[email protected]> | 2020-03-20 22:36:46 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2020-03-20 09:40:39 +0800 |
| commit | 66a202c3c1dc599997579078e6d61647e7253a4e (patch) | |
| tree | a3a8003a54888da656fd1964c20f3fa9786df823 /xmake/modules/utils/archive/extension.lua | |
| parent | b01bc45cfb6a2a2c8da72f3b6467605e4d4f259c (diff) | |
improve to download package
Diffstat (limited to 'xmake/modules/utils/archive/extension.lua')
| -rw-r--r-- | xmake/modules/utils/archive/extension.lua | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/xmake/modules/utils/archive/extension.lua b/xmake/modules/utils/archive/extension.lua new file mode 100644 index 000000000..73a61ec31 --- /dev/null +++ b/xmake/modules/utils/archive/extension.lua @@ -0,0 +1,37 @@ +--!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-2020, TBOOX Open Source Group. +-- +-- @author ruki +-- @file extension.lua +-- + +-- imports +import("core.base.hashset") + +-- get the archive extension +function main(archivefile) + + local extension = "" + local filename = path.filename(archivefile) + local extensionset = hashset.from({".zip", ".7z", ".gz", ".xz", ".tgz", ".bz2", ".tar", ".tar.gz", ".tar.xz", ".tar.bz2"}) + local i = filename:lastof(".", true) + if i then + local p = filename:sub(1, i - 1):lastof(".", true) + if p and extensionset:has(filename:sub(p)) then i = p end + extension = filename:sub(i) + end + return extension +end |
