Skip to content

Commit

Permalink
add new version
Browse files Browse the repository at this point in the history
  • Loading branch information
starwing committed Sep 16, 2021
1 parent 2741177 commit 34c43af
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions rockspecs/lpath-0.3.1-1.rockspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
package = "lpath"
version = "0.3.1-1"
source = {
url = "git://github.com/starwing/lpath.git",
tag = "0.3.1"
}
description = {
summary = "a OS specific path manipulation module for Lua",
detailed = [[
lpath is a lfs-like Lua module to handle path, file system and file informations.
This module is designed to be easy extend to new system. Now it implements windows using Win32 API (lfs use legacy POSIX APIs on Windows), and POSIX systems.
This module is inspired by Python's os.path and pathlib module. It split into 4 parts: path.info, path.fs, path.env and path itself.
]],
homepage = "https://github.com/starwing/lpath",
license = "MIT/X11"
}
dependencies = {
"lua >= 5.1"
}
build = {
type = "builtin",
modules = {
path = "lpath.c"
},
copy_directories = {}
}

0 comments on commit 34c43af

Please sign in to comment.