Levente Polyak pushed to branch main at Arch Linux / Packaging / Packages /
superfile
Commits:
88611d8f by Levente Polyak at 2025-06-22T22:36:01+02:00
switch URL to upstream website
- - - - -
b33a0510 by Levente Polyak at 2025-06-22T23:57:57+02:00
simplified install cmd
- - - - -
cc0e4019 by Levente Polyak at 2025-06-22T23:58:24+02:00
optdepends: add exiftool for metadata plugin
- - - - -
85f405dc by Levente Polyak at 2025-06-22T23:58:32+02:00
nvchecker: add config
- - - - -
329659e9 by Levente Polyak at 2025-06-23T00:00:53+02:00
upgpkg: 1.3.1-2: exiftool optdepends
- - - - -
3 changed files:
- .SRCINFO
- + .nvchecker.toml
- PKGBUILD
Changes:
=====================================
.SRCINFO
=====================================
@@ -1,13 +1,14 @@
pkgbase = superfile
pkgdesc = Pretty fancy and modern terminal file manager
pkgver = 1.3.1
- pkgrel = 1
- url = https://github.com/MHNightCat/superfile
+ pkgrel = 2
+ url = https://superfile.netlify.app/
arch = x86_64
license = MIT
makedepends = go
depends = glibc
- source =
superfile-1.3.1.tar.gz::https://github.com/MHNightCat/superfile/archive/refs/tags/v1.3.1.tar.gz
+ optdepends = exiftool: metadata plugin
+ source =
https://github.com/yorukot/superfile/archive/refs/tags/v1.3.1/superfile-1.3.1.tar.gz
sha256sums =
9903ba151abee629e6da4126cb4f6c73b693112632be366b8fab5ff17d15f14d
pkgname = superfile
=====================================
.nvchecker.toml
=====================================
@@ -0,0 +1,4 @@
+[superfile]
+source = "git"
+git = "https://github.com/yorukot/superfile.git"
+prefix = "v"
=====================================
PKGBUILD
=====================================
@@ -2,14 +2,17 @@
# Contributor: Matteo Giordano <[email protected]>
pkgname=superfile
pkgver=1.3.1
-pkgrel=1
+pkgrel=2
pkgdesc='Pretty fancy and modern terminal file manager'
arch=('x86_64')
-url='https://github.com/MHNightCat/superfile'
+url='https://superfile.netlify.app/'
license=('MIT')
depends=('glibc')
makedepends=('go')
-source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/refs/tags/v${pkgver}.tar.gz")
+optdepends=(
+ 'exiftool: metadata plugin'
+)
+source=("https://github.com/yorukot/superfile/archive/refs/tags/v${pkgver}/${pkgname}-${pkgver}.tar.gz")
sha256sums=('9903ba151abee629e6da4126cb4f6c73b693112632be366b8fab5ff17d15f14d')
build() {
@@ -24,7 +27,7 @@ build() {
package() {
cd "${pkgname}-${pkgver}"
- install -Dm755 "bin/spf" ${pkgdir}/usr/bin/spf
- install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
- install -Dm644 README.md "${pkgdir}/usr/share/doc/${pkgname}/README.md"
+ install -Dm755 bin/spf -t "${pkgdir}/usr/bin/"
+ install -Dm644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}/"
+ install -Dm644 README.md -t "${pkgdir}/usr/share/doc/${pkgname}/"
}
View it on GitLab:
https://gitlab.archlinux.org/archlinux/packaging/packages/superfile/-/compare/8f69a739e2e530a2ce351d0cef2cb3211eea1312...329659e904dccc1d8ed1cc1ef57c8577d0545aaa
--
View it on GitLab:
https://gitlab.archlinux.org/archlinux/packaging/packages/superfile/-/compare/8f69a739e2e530a2ce351d0cef2cb3211eea1312...329659e904dccc1d8ed1cc1ef57c8577d0545aaa
You're receiving this email because of your account on gitlab.archlinux.org.