3 Commits

Author SHA1 Message Date
Cametendo
d54142e71c Update PKGBUILD 2026-05-01 10:18:25 +02:00
Cametendo
ba3932e98f Added .SRCINFO 2026-04-28 12:40:13 +02:00
Cametendo
8a8b559959 Updated PKGBUILD for next version 2026-04-28 12:37:47 +02:00
2 changed files with 20 additions and 6 deletions

15
.SRCINFO Normal file
View File

@@ -0,0 +1,15 @@
pkgbase = cflash
pkgdesc = A small and lightweight wrapper for dd that strips away the complexity of CLI flashing.
pkgver = 1.0.1
pkgrel = 1
url = https://github.com/cametendo/cflash-git
arch = any
license = MIT
makedepends = java-environment>=21
makedepends = maven
makedepends = git
depends = java-runtime>=21
source = cflash::git+https://github.com/cametendo/cflash-git.git
sha256sums = SKIP
pkgname = cflash

View File

@@ -1,13 +1,13 @@
# Maintainer: Cametendo cameronmathis08@gmail.com
pkgname=cflash
pkgver=1.0.0
pkgver=1.0.1
pkgrel=1
pkgdesc="Small and lightweight image and iso flasher build on dd."
pkgdesc="A small and lightweight wrapper for dd that strips away the complexity of CLI flashing."
arch=('any')
url="https://github.com/cametendo/cflash-git"
license=('MIT')
depends=('java-runtime>=21')
makedepends=('java-environment>=21' 'maven')
makedepends=('java-environment>=21' 'maven' 'git')
source=("cflash::git+https://github.com/cametendo/cflash-git.git")
sha256sums=('SKIP')
@@ -20,9 +20,8 @@ build() {
package() {
cd "$srcdir/cflash"
# for some reason MAKEPKD won't accept my version, using the wildcard for literally anything if may find
install -Dm644 target/cflash-*-jar-with-dependencies.jar \
"$pkgdir/usr/share/java/cflash/cflash.jar"
install -Dm644 "target/${pkgname}-${pkgver}-jar-with-dependencies.jar" \
"$pkgdir/usr/share/java/${pkgname}/${pkgname}.jar"
# Create the executable
install -d "$pkgdir/usr/bin"