diff options
-rw-r--r-- | nfpm/Makefile | 5 | ||||
-rw-r--r-- | nfpm/nfpm.yaml.skel | 4 |
2 files changed, 6 insertions, 3 deletions
diff --git a/nfpm/Makefile b/nfpm/Makefile index 46eeb65..c2aacbf 100644 --- a/nfpm/Makefile +++ b/nfpm/Makefile @@ -3,7 +3,7 @@ all: skel chglog build skel: @grep -vP '^[\t\ ]*#' nfpm.yaml.skel | tr -s '\n' > nfpm.yaml -build: build-deb build-rpm +build: build-deb build-rpm build-arch build-deb: @nfpm pkg --packager deb --target ./build/ @@ -11,5 +11,8 @@ build-deb: build-rpm: @nfpm pkg --packager rpm --target ./build/ +build-arch: + @nfpm pkg --packager archlinux --target ./build/ + chglog: @chglog init diff --git a/nfpm/nfpm.yaml.skel b/nfpm/nfpm.yaml.skel index 97d9c56..24f6c90 100644 --- a/nfpm/nfpm.yaml.skel +++ b/nfpm/nfpm.yaml.skel @@ -56,7 +56,7 @@ epoch: 1 # This is appended to the `version` after `prerelease`. This should be # incremented if you release an updated package of the same upstream version, # and it should reset to 1 when bumping the version. -release: 1 +release: 2 # Section. # This is only used by the deb packager. @@ -442,7 +442,7 @@ deb: # # APK does not use pgp keys, so the key_id field is ignored. # key_id: ignored # -#archlinux: +archlinux: # # This value is used to specify the name used to refer to a group # # of packages when building a split package. Defaults to name # # See: https://wiki.archlinux.org/title/PKGBUILD#pkgbase |