mirror of
https://github.com/archlinux/aur.git
synced 2026-03-14 23:16:48 +01:00
Published: 2.5.0
This commit is contained in:
commit
3c9bc89103
4 changed files with 79 additions and 0 deletions
41
.SRCINFO
Normal file
41
.SRCINFO
Normal file
|
|
@ -0,0 +1,41 @@
|
|||
pkgbase = crossdirstat-bin
|
||||
pkgdesc = Free open-source cross-platform file & directory statistics
|
||||
pkgver = 2.5.0
|
||||
pkgrel = 1
|
||||
url = https://github.com/Jelmerro/crossdirstat
|
||||
arch = x86_64
|
||||
arch = aarch64
|
||||
license = MIT
|
||||
makedepends = tar
|
||||
depends = glibc
|
||||
depends = gcc-libs
|
||||
depends = glib2
|
||||
depends = systemd-libs
|
||||
depends = dbus
|
||||
depends = gtk3
|
||||
depends = mesa
|
||||
depends = nspr
|
||||
depends = libxkbcommon
|
||||
depends = libxdamage
|
||||
depends = libxfixes
|
||||
depends = libxrandr
|
||||
depends = libxext
|
||||
depends = libxcb
|
||||
depends = expat
|
||||
depends = libx11
|
||||
depends = libxcomposite
|
||||
depends = libcups
|
||||
depends = alsa-lib
|
||||
depends = pango
|
||||
depends = cairo
|
||||
depends = nss
|
||||
depends = at-spi2-core
|
||||
depends = hicolor-icon-theme
|
||||
provides = crossdirstat
|
||||
conflicts = crossdirstat
|
||||
source_x86_64 = https://github.com/Jelmerro/crossdirstat/releases/download/2.5.0/crossdirstat_2.5.0_amd64.deb
|
||||
sha256sums_x86_64 = a398e132527d06fa159b866667e89466ac4a3b393bf285a7884f60f46d69fc05
|
||||
source_aarch64 = https://github.com/Jelmerro/crossdirstat/releases/download/2.5.0/crossdirstat_2.5.0_arm64.deb
|
||||
sha256sums_aarch64 = 0cfcd9b9ac418cf645e3552f11155ba5eb94e58d8d15ef4cb187b423daa9734e
|
||||
|
||||
pkgname = crossdirstat-bin
|
||||
5
.gitignore
vendored
Normal file
5
.gitignore
vendored
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
*
|
||||
!.nvchecker.toml
|
||||
!.gitignore
|
||||
!PKGBUILD
|
||||
!.SRCINFO
|
||||
4
.nvchecker.toml
Normal file
4
.nvchecker.toml
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
[crossdirstat-bin]
|
||||
source = "github"
|
||||
github = "Jelmerro/crossdirstat"
|
||||
use_latest_release = true
|
||||
29
PKGBUILD
Normal file
29
PKGBUILD
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
# Maintainer: Rafael Dominiquini <rafaeldominiquini at gmail dot com>
|
||||
|
||||
_basename=crossdirstat
|
||||
pkgname=${_basename}-bin
|
||||
pkgver=2.5.0
|
||||
pkgrel=1
|
||||
pkgdesc="Free open-source cross-platform file & directory statistics"
|
||||
arch=('x86_64' 'aarch64')
|
||||
_barch=('amd64' 'arm64')
|
||||
url="https://github.com/Jelmerro/crossdirstat"
|
||||
license=('MIT')
|
||||
conflicts=("${_basename}")
|
||||
provides=("${_basename}")
|
||||
makedepends=('tar')
|
||||
depends=('glibc' 'gcc-libs' 'glib2' 'systemd-libs' 'dbus' 'gtk3' 'mesa' 'nspr' 'libxkbcommon' 'libxdamage' 'libxfixes' 'libxrandr' 'libxext' 'libxcb' 'expat' 'libx11' 'libxcomposite' 'libcups' 'alsa-lib' 'pango' 'cairo' 'nss' 'at-spi2-core' 'hicolor-icon-theme')
|
||||
source_x86_64=("${url}/releases/download/${pkgver}/${_basename}_${pkgver}_${_barch[0]}.deb")
|
||||
source_aarch64=("${url}/releases/download/${pkgver}/${_basename}_${pkgver}_${_barch[1]}.deb")
|
||||
sha256sums_x86_64=('a398e132527d06fa159b866667e89466ac4a3b393bf285a7884f60f46d69fc05')
|
||||
sha256sums_aarch64=('0cfcd9b9ac418cf645e3552f11155ba5eb94e58d8d15ef4cb187b423daa9734e')
|
||||
|
||||
package() {
|
||||
cd "${pkgdir}"
|
||||
|
||||
# this extracts all into the pkgdir
|
||||
tar -xf "${srcdir}/data.tar.xz"
|
||||
|
||||
install -dm755 "${pkgdir}/usr/bin/"
|
||||
ln -sf "/opt/Crossdirstat/crossdirstat" "${pkgdir}/usr/bin/${_basename}"
|
||||
}
|
||||
Loading…
Add table
Reference in a new issue