Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
[package]
name = "fm"
name = "fm-euclio"
version = "0.1.0"
edition = "2021"
authors = ["Andy Russell <[email protected]>"]
publish = false
license = "MIT"
repository = "https://github.com/euclio/fm"
homepage = "https://github.com/euclio/fm"
description = "A small, general-purpose file manager."
description = "fm-euclio is a small, general-purpose file manager built using GTK and Relm4."

[dependencies]
anyhow = "1.0.51"
Expand Down
6 changes: 3 additions & 3 deletions PKGBUILD
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

# Maintainer: Andy Russell <[email protected]>

pkgname=fm-git
pkgname=fm-euclio-git
pkgver=VERSION
pkgrel=1
pkgdesc="Small, general purpose file manager built with GTK"
Expand All @@ -11,7 +11,7 @@ license=('MIT')
groups=()
depends=('gtk4' 'libadwaita' 'libpanel' 'gtksourceview5')
makedepends=('git' 'rust' 'cargo')
provides=("fm")
provides=("fm-euclio")
conflicts=("fm")
source=("git+$url")
sha256sums=('SKIP')
Expand All @@ -37,6 +37,6 @@ check() {
package() {
cd "$srcdir/${pkgname%-git}"

install -Dm755 "$srcdir/${pkgname%-git}/target/release/fm" "$pkgdir/usr/bin/fm"
install -Dm755 "$srcdir/${pkgname%-git}/target/release/fm-euclio" "$pkgdir/usr/bin/fm-euclio"
install -Dm644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname%-git}"
}