inital 1.0 pkg

This commit is contained in:
2025-07-04 06:50:02 -07:00
commit e6b6c6f22d
3 changed files with 51 additions and 0 deletions

12
.SRCINFO Normal file
View File

@ -0,0 +1,12 @@
pkgbase = epochcli
pkgdesc = Updater and launcher for Project Epoch
pkgver = 1.0
pkgrel = 1
url = https://git.burkey.co/eburk/epochcli
arch = x86_64
license = ISC
makedepends = go>=1.24.0
source = git+https://git.burkey.co/eburk/epochcli#commit=134d70e29b3b19365e2ccdd879c2421b9fb5dfac
sha256sums = SKIP
pkgname = epochcli

7
.gitignore vendored Normal file
View File

@ -0,0 +1,7 @@
#Ignore everything
*
#But not these files...
!.gitignore
!PKGBUILD
!.SRCINFO

32
PKGBUILD Normal file
View File

@ -0,0 +1,32 @@
# Maintainer: Evan Burkey <evan@burkey.co>
pkgname=epochcli
pkgver=1.0
pkgrel=1
epoch=
pkgdesc="Updater and launcher for Project Epoch"
arch=('x86_64')
url="https://git.burkey.co/eburk/epochcli"
license=('ISC')
makedepends=('go>=1.24.0')
checkdepends=()
optdepends=()
provides=()
conflicts=()
replaces=()
backup=()
options=()
source=("git+https://git.burkey.co/eburk/epochcli#commit=134d70e29b3b19365e2ccdd879c2421b9fb5dfac")
noextract=()
sha256sums=("SKIP")
build() {
msg "Building the bee binaries"
msg2 "using gopath $GOPATH"
pushd epochcli
go build
}
package() {
pushd epochcli
install -v -D -m0755 epochcli ${pkgdir}/usr/bin/epochcli
}