T.J. Townsend pushed to branch main at Arch Linux / Packaging / Packages /
pcmanfm
Commits:
2b5f9ab5 by T.J. Townsend at 2025-03-04T13:21:42-05:00
upgpkg: 1.4.0-1
- - - - -
3 changed files:
- .SRCINFO
- + .nvchecker.toml
- PKGBUILD
Changes:
=====================================
.SRCINFO
=====================================
@@ -1,17 +1,18 @@
pkgbase = pcmanfm
pkgdesc = Extremely fast and lightweight file manager
- pkgver = 1.3.2
+ pkgver = 1.4.0
pkgrel = 1
url = https://lxde.org/
arch = x86_64
groups = lxde
license = GPL
+ makedepends = git
makedepends = intltool
depends = libfm-gtk2
depends = lxmenu-data
optdepends = gvfs: for trash support, mounting with udisks and remote
filesystems
optdepends = xarchiver: archive management
- source = https://downloads.sourceforge.net/pcmanfm/pcmanfm-1.3.2.tar.xz
- sha256sums =
14cb7b247493c4cce65fbb5902611e3ad00a7a870fbc1e50adc50428c5140cf7
+ source = git+https://github.com/lxde/pcmanfm.git#tag=1.4.0
+ sha256sums =
ab7307df284ebc2a843a0aca85246bdde1187a57be3fc942d6e3b6e8517335b9
pkgname = pcmanfm
=====================================
.nvchecker.toml
=====================================
@@ -0,0 +1,3 @@
+[pcmanfm]
+source = "git"
+git = "https://github.com/lxde/pcmanfm.git"
=====================================
PKGBUILD
=====================================
@@ -5,7 +5,7 @@
# Contributor: Juergen Hoetzel <[email protected]>
pkgname=pcmanfm
-pkgver=1.3.2
+pkgver=1.4.0
pkgrel=1
pkgdesc='Extremely fast and lightweight file manager'
arch=('x86_64')
@@ -13,19 +13,24 @@ url='https://lxde.org/'
license=('GPL')
groups=('lxde')
depends=('libfm-gtk2' 'lxmenu-data')
-makedepends=('intltool')
+makedepends=('git' 'intltool')
optdepends=('gvfs: for trash support, mounting with udisks and remote
filesystems'
'xarchiver: archive management')
-source=(https://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.xz)
-sha256sums=('14cb7b247493c4cce65fbb5902611e3ad00a7a870fbc1e50adc50428c5140cf7')
+source=(git+https://github.com/lxde/pcmanfm.git#tag=${pkgver})
+sha256sums=('ab7307df284ebc2a843a0aca85246bdde1187a57be3fc942d6e3b6e8517335b9')
+
+prepare() {
+ cd $pkgname
+ autoreconf -fiv
+}
build() {
- cd $pkgname-$pkgver
+ cd $pkgname
./configure --sysconfdir=/etc --prefix=/usr
make
}
package() {
- cd $pkgname-$pkgver
+ cd $pkgname
make DESTDIR="$pkgdir" install
}
View it on GitLab:
https://gitlab.archlinux.org/archlinux/packaging/packages/pcmanfm/-/commit/2b5f9ab53b819de9c24fb54f1785f39aaa0561e8
--
View it on GitLab:
https://gitlab.archlinux.org/archlinux/packaging/packages/pcmanfm/-/commit/2b5f9ab53b819de9c24fb54f1785f39aaa0561e8
You're receiving this email because of your account on gitlab.archlinux.org.