package An official xmake package repository https://xrepo.xmake.io/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
799 B

6 years ago
package("libpng")
set_homepage("http://www.libpng.org/pub/png/libpng.html")
set_description("The official PNG reference library")
set_urls("https://github.com/glennrp/libpng/archive/$(version).zip",
"https://github.com/glennrp/libpng.git")
6 years ago
add_versions("v1.6.35", "3d22d46c566b1761a0e15ea397589b3a5f36ac09b7c785382e6470156c04247f")
add_versions("v1.6.34", "7ffa5eb8f9f3ed23cf107042e5fec28699718916668bbce48b968600475208d3")
add_deps("zlib")
6 years ago
if is_host("windows") then
add_deps("cmake")
end
6 years ago
add_links("png")
6 years ago
on_install("windows", function (package)
6 years ago
import("package.tools.cmake").install(package)
6 years ago
end)
on_install("macosx", "linux", function (package)
6 years ago
import("package.tools.autoconf").install(package)
6 years ago
end)