Initial;
This commit is contained in:
commit
a6fe19e319
1 changed files with 28 additions and 0 deletions
28
PKGBUILD
Normal file
28
PKGBUILD
Normal file
|
@ -0,0 +1,28 @@
|
|||
# Maintainer: Gabriel Bjørnager Jensen
|
||||
pkgname=benoit
|
||||
pkgver=2.1.1
|
||||
pkgrel=1
|
||||
pkgdesc="Multithreaded Mandelbrot renderer with support for PNG and WebP encoding."
|
||||
arch=("any")
|
||||
url="https://mandelbrot.dk/benoit"
|
||||
makedepends=("cargo" "desktop-file-utils" "git" "rust")
|
||||
source=("git+https://mandelbrot.dk/benoit")
|
||||
license=("AGPL3")
|
||||
sha512sums=("SKIP")
|
||||
pkgver() {
|
||||
cd "${srcdir}/benoit"
|
||||
printf "%s" "$(git describe --abbrev=0)"
|
||||
}
|
||||
build() {
|
||||
cd "${srcdir}/benoit"
|
||||
cargo build --release
|
||||
}
|
||||
package() {
|
||||
cd "${srcdir}/benoit"
|
||||
mkdir -pm755 "${pkgdir}/usr/bin"
|
||||
mkdir -pm755 "${pkgdir}/usr/share/application"
|
||||
mkdir -pm755 "${pkgdir}/usr/share/icons"
|
||||
install -m755 "target/release/benoit" "${pkgdir}/usr/bin/benoit"
|
||||
install -m644 "benoit.svg" "${pkgdir}/usr/share/icons/benoit.svg"
|
||||
desktop-file-install --dir="${pkgdir}/usr/share/applications" "benoit.desktop"
|
||||
}
|
Loading…
Add table
Reference in a new issue