Skip to content

Commit

Permalink
chore: Start versioning rocks
Browse files Browse the repository at this point in the history
  • Loading branch information
Omikhleia authored and Didier Willis committed Aug 5, 2023
1 parent 203caaa commit e5f4314
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 3 deletions.
5 changes: 2 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,10 @@ Installation relies on the **luarocks** package manager.
To install the latest development version, you may use the provided “rockspec”:

```
luarocks --lua-version 5.4 install --server=https://luarocks.org/dev qrcode.sile
luarocks install qrcode.sile
```

(Adapt to your version of Lua, if need be, and refer to the SILE manual for more
detailed 3rd-party package installation information.)
(Refer to the SILE manual for more detailed 3rd-party package installation information.)

## Usage

Expand Down
25 changes: 25 additions & 0 deletions qrcode.sile-1.0.0-1.rockspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
rockspec_format = "3.0"
package = "qrcode.sile"
version = "1.0.0-1"
source = {
url = "git+https://github.com/Omikhleia/qrcode.sile.git",
tag = "v1.0.0",
}
description = {
summary = "QR code package for the SILE typesetting system.",
detailed = [[
This package for the SILE typesetter allows printing out a QR code.
]],
homepage = "https://github.com/Omikhleia/qrcode.sile",
license = "BSD 3-clause",
}
dependencies = {
"lua >= 5.1",
}
build = {
type = "builtin",
modules = {
["sile.packages.qrcode"] = "packages/qrcode/init.lua",
["sile.qrencode"] = "lua-libraries/qrencode.lua",
}
}

0 comments on commit e5f4314

Please sign in to comment.