aboutsummaryrefslogtreecommitdiff
path: root/.config/pkgit/repos/cowsay.lua
blob: 630d7462f6f77db67b061d37ec1a2ccbaff5c786 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
return {
  url = "https://github.com/cowsay-org/cowsay",
  targets = {
    default = {
      install = function()
        os.execute("make install prefix="..prefix)
      end,
      uninstall = function()
        os.execute("make uninstall prefix="..prefix)
        os.execute("rm -rf "..prefix.."/share/cowsay")
      end,
    }
  }
}