diff options
| author | Ophestra <cat@gensokyo.uk> | 2026-05-20 03:14:11 +0900 |
|---|---|---|
| committer | Ophestra <cat@gensokyo.uk> | 2026-05-20 03:33:15 +0900 |
| commit | ef414ab01a28b61ef01766c3dd28ed2342f5ab75 (patch) | |
| tree | 314a8f471c8c052da0936549ecac2d052f52932a /internal/rosa/package/libpng.az | |
| parent | 96abf266dd8bbbb4ea65c74a3f84f2461a6021a7 (diff) | |
internal/rosa/package: migrate many libraries
This also adds more string helpers.
Signed-off-by: Ophestra <cat@gensokyo.uk>
Diffstat (limited to 'internal/rosa/package/libpng.az')
| -rw-r--r-- | internal/rosa/package/libpng.az | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/internal/rosa/package/libpng.az b/internal/rosa/package/libpng.az new file mode 100644 index 00000000..1e5e3ed0 --- /dev/null +++ b/internal/rosa/package/libpng.az @@ -0,0 +1,27 @@ +package libpng { + description = "the official PNG reference library"; + website = "https://www.libpng.org/pub/png/libpng.html"; + anitya = 1705; + + version* = "1.6.58"; + source = remoteTar { + url = "https://downloads.sourceforge.net/project/libpng/libpng"+ + join { + elems = slice { + elems = split { + s = version; + sep = "."; + n = 3; + }; + end = 2; + }; + }+"/"+version+"/libpng-"+version+".tar.gz"; + checksum = "m_a5lROJH7vmF3cMjqwTUqURuQLhV1JQx2ySPzcN3VPdgDB9pG3UINsIx_mtkr-t"; + compress = gzip; + }; + + exec = make {}; + + inputs = [ zlib ]; + runtime = [ zlib ]; +} |
