Published: 0.1.5

This commit is contained in:
Rafael Baboni Dominiquini 2025-10-03 02:12:13 -03:00
commit 947e64eab0
4 changed files with 69 additions and 0 deletions

22
.SRCINFO Normal file
View file

@ -0,0 +1,22 @@
pkgbase = pitchfork-bin
pkgdesc = Daemons with DX
pkgver = 0.1.5
pkgrel = 1
url = https://github.com/jdx/pitchfork
arch = x86_64
arch = aarch64
license = MIT
depends = glibc
depends = gcc-libs
provides = pitchfork
conflicts = pitchfork
source = LICENSE-0.1.5::https://raw.githubusercontent.com/jdx/pitchfork/v0.1.5/LICENSE
source = README-0.1.5.md::https://raw.githubusercontent.com/jdx/pitchfork/v0.1.5/README.md
sha256sums = 5ba5d69f83674602525196efe44114e546cf3440d363603961076e52b9647a5a
sha256sums = aa980709129d42e91803e82272d1ae1ca6a6d6e2eb535ee54ef1735f9117f297
source_x86_64 = pitchfork-x86_64-0.1.5.tar.gz::https://github.com/jdx/pitchfork/releases/download/v0.1.5/pitchfork-x86_64-unknown-linux-gnu.tar.gz
sha256sums_x86_64 = f7aef126cff3ee79c537b3cd3f1c14cb8d62013f5dbd2d47a1640a1af60394b1
source_aarch64 = pitchfork-aarch64-0.1.5.tar.gz::https://github.com/jdx/pitchfork/releases/download/v0.1.5/pitchfork-aarch64-unknown-linux-gnu.tar.gz
sha256sums_aarch64 = 97999db51dc09b4e704ad30811823fea1ac033870662549655825d42e836565e
pkgname = pitchfork-bin

5
.gitignore vendored Normal file
View file

@ -0,0 +1,5 @@
*
!.gitignore
!.nvchecker.toml
!PKGBUILD
!.SRCINFO

4
.nvchecker.toml Normal file
View file

@ -0,0 +1,4 @@
[pitchfork-bin]
source = "git"
git = "https://github.com/jdx/pitchfork.git"
prefix = "v"

38
PKGBUILD Normal file
View file

@ -0,0 +1,38 @@
# Maintainer: Rafael Dominiquini <rafaeldominiquini at gmail dot com>
_pkgauthor=jdx
_pkgname=pitchfork
pkgname=${_pkgname}-bin
pkgver=0.1.5
_pkgvername=v${pkgver}
pkgrel=1
pkgdesc="Daemons with DX"
arch=('x86_64' 'aarch64')
_barch=('x86_64' 'aarch64')
url="https://github.com/${_pkgauthor}/${_pkgname}"
_urlraw="https://raw.githubusercontent.com/${_pkgauthor}/${_pkgname}/${_pkgvername}"
license=('MIT')
provides=("${_pkgname}")
conflicts=("${_pkgname}")
depends=('glibc' 'gcc-libs')
source=("LICENSE-${pkgver}::${_urlraw}/LICENSE"
"README-${pkgver}.md::${_urlraw}/README.md")
source_x86_64=("${_pkgname}-${arch[0]}-${pkgver}.tar.gz::${url}/releases/download/${_pkgvername}/${_pkgname}-${_barch[0]}-unknown-linux-gnu.tar.gz")
source_aarch64=("${_pkgname}-${arch[1]}-${pkgver}.tar.gz::${url}/releases/download/${_pkgvername}/${_pkgname}-${_barch[1]}-unknown-linux-gnu.tar.gz")
sha256sums=('5ba5d69f83674602525196efe44114e546cf3440d363603961076e52b9647a5a'
'aa980709129d42e91803e82272d1ae1ca6a6d6e2eb535ee54ef1735f9117f297')
sha256sums_x86_64=('f7aef126cff3ee79c537b3cd3f1c14cb8d62013f5dbd2d47a1640a1af60394b1')
sha256sums_aarch64=('97999db51dc09b4e704ad30811823fea1ac033870662549655825d42e836565e')
package() {
cd "${srcdir}/" || exit
install -Dm755 "${_pkgname}" "${pkgdir}/usr/bin/${_pkgname}"
install -Dm644 "README-${pkgver}.md" "${pkgdir}/usr/share/doc/${pkgname}/README.md"
install -Dm644 "LICENSE-${pkgver}" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
}