aboutsummaryrefslogtreecommitdiff
path: root/.config/pkgit/repos/imagemagick.lua
blob: bd04aae30f8b97da63e1b87f9a4550112db070c1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
return {
  url = "https://github.com/ImageMagick/ImageMagick.git",
  targets = {
    default = {
      build = function()
        return os.execute("./configure --prefix="..prefix.." && make")
      end,
      install = function()
        return os.execute(privilege_escalator.." make install")
      end,
    },
  }
}