summarylogtreecommitdiffstats
path: root/Taskfile.yaml
blob: 233651c1c35dc0389906c6e2b2c34b68f3d43b96 (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:
    description: Build the package
    cmds:
      - makepkg -s

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

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

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

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