mirror of
https://github.com/archlinux/aur.git
synced 2025-12-10 08:05:42 +01:00
v2.4.0
This commit is contained in:
parent
2e36adb0ca
commit
49576ef16b
2 changed files with 17 additions and 11 deletions
8
.SRCINFO
8
.SRCINFO
|
|
@ -1,7 +1,7 @@
|
||||||
pkgbase = lightningview
|
pkgbase = lightningview
|
||||||
pkgdesc = A lightning-fast cross-platform image viewer written in Rust, supporting many raw camera formats.
|
pkgdesc = A lightning-fast cross-platform image viewer written in Rust, supporting many raw camera formats.
|
||||||
pkgver = 2.3.0
|
pkgver = 2.4.0
|
||||||
pkgrel = 2
|
pkgrel = 1
|
||||||
url = https://github.com/dividebysandwich/LightningView
|
url = https://github.com/dividebysandwich/LightningView
|
||||||
arch = x86_64
|
arch = x86_64
|
||||||
license = GPL-2.0-or-later
|
license = GPL-2.0-or-later
|
||||||
|
|
@ -16,10 +16,10 @@ pkgbase = lightningview
|
||||||
depends = fontconfig
|
depends = fontconfig
|
||||||
depends = dbus
|
depends = dbus
|
||||||
depends = openssl
|
depends = openssl
|
||||||
source = lightningview-2.3.0.tar.gz::https://github.com/dividebysandwich/LightningView/archive/refs/tags/v2.3.0.tar.gz
|
source = lightningview-2.4.0.tar.gz::https://github.com/dividebysandwich/LightningView/archive/refs/tags/v2.4.0.tar.gz
|
||||||
source = lightningview.desktop
|
source = lightningview.desktop
|
||||||
source = logo_256.png
|
source = logo_256.png
|
||||||
sha256sums = ee3ed80c4802d6bf003b9c215791e0cd949f24a513f00fa0cca7c9d67983809d
|
sha256sums = 12998cb29b64dde7855123b4eb91955f1bb31c03d75821a9f185fe01118b422b
|
||||||
sha256sums = 830ce1fe85eb1e00530d020e1c0f735e77e10909d2575e84db231023ce42a99b
|
sha256sums = 830ce1fe85eb1e00530d020e1c0f735e77e10909d2575e84db231023ce42a99b
|
||||||
sha256sums = 09492ed9bde5eb1d4857e2551c0fabcaf57bdd873d09c0112b3b27ef01135893
|
sha256sums = 09492ed9bde5eb1d4857e2551c0fabcaf57bdd873d09c0112b3b27ef01135893
|
||||||
|
|
||||||
|
|
|
||||||
20
PKGBUILD
20
PKGBUILD
|
|
@ -1,7 +1,6 @@
|
||||||
# Maintainer: Dividebysandwich <josef.jahn@gmail.com>
|
|
||||||
pkgname=lightningview
|
pkgname=lightningview
|
||||||
pkgver=2.3.0
|
pkgver=2.4.0
|
||||||
pkgrel=2
|
pkgrel=1
|
||||||
pkgdesc="A lightning-fast cross-platform image viewer written in Rust, supporting many raw camera formats."
|
pkgdesc="A lightning-fast cross-platform image viewer written in Rust, supporting many raw camera formats."
|
||||||
arch=('x86_64')
|
arch=('x86_64')
|
||||||
url="https://github.com/dividebysandwich/LightningView"
|
url="https://github.com/dividebysandwich/LightningView"
|
||||||
|
|
@ -13,14 +12,21 @@ source=(
|
||||||
"$pkgname.desktop"
|
"$pkgname.desktop"
|
||||||
"logo_256.png"
|
"logo_256.png"
|
||||||
)
|
)
|
||||||
sha256sums=('ee3ed80c4802d6bf003b9c215791e0cd949f24a513f00fa0cca7c9d67983809d'
|
sha256sums=('12998cb29b64dde7855123b4eb91955f1bb31c03d75821a9f185fe01118b422b'
|
||||||
'830ce1fe85eb1e00530d020e1c0f735e77e10909d2575e84db231023ce42a99b'
|
'830ce1fe85eb1e00530d020e1c0f735e77e10909d2575e84db231023ce42a99b'
|
||||||
'09492ed9bde5eb1d4857e2551c0fabcaf57bdd873d09c0112b3b27ef01135893')
|
'09492ed9bde5eb1d4857e2551c0fabcaf57bdd873d09c0112b3b27ef01135893')
|
||||||
|
|
||||||
build() {
|
prepare() {
|
||||||
|
export RUSTUP_TOOLCHAIN=stable
|
||||||
cd "LightningView-$pkgver"
|
cd "LightningView-$pkgver"
|
||||||
# --locked ensures we use the versions from Cargo.lock for a reproducible build
|
cargo fetch --locked --target $(rustc --print host-tuple)
|
||||||
cargo build --release --locked
|
}
|
||||||
|
|
||||||
|
build() {
|
||||||
|
export RUSTUP_TOOLCHAIN=stable
|
||||||
|
export CARGO_TARGET_DIR=target
|
||||||
|
cd "LightningView-$pkgver"
|
||||||
|
cargo build --release --frozen
|
||||||
}
|
}
|
||||||
|
|
||||||
package() {
|
package() {
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue