summarylogtreecommitdiffstats
path: root/Taskfile.yml
blob: fc57960eac8e5e8fe6cc2451f8ba20164c54d152 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
---

version: '3'

tasks:
  build:
    desc: Build the package
    cmds:
      - makepkg -s

  install:
    desc: Install the package
    cmds:
      - sudo pacman -U *.pkg.tar.zst

  clean:
    desc: Clean up build files
    cmds:
      - rm -rf src pkg *.pkg.tar.zst *.tar.gz *.sig

  updpkgsums:
    desc: Update checksums in PKGBUILD
    cmds:
      - updpkgsums

  srcinfo:
    desc: Generate .SRCINFO file
    cmds:
      - makepkg --printsrcinfo > .SRCINFO