blob: b570ea2a30b1db836384df36155f60ff2c4bf459 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
# Maintainer: archcrack <leo.clifm@outlook.com>
pkgname=clifm
pkgver=1.21
pkgrel=1
pkgdesc="The command line file manager"
arch=('i686' 'pentium4' 'x86_64' 'arm' 'aarch64' 'armv7h')
url="https://github.com/leo-arch/${pkgname}"
license=(GPL2)
provides=('clifm')
depends=('libcap' 'readline' 'acl' 'file')
makedepends=('make' 'gzip')
optdepends=(
'archivemount: Archives mount'
'atool: Archives/compression support'
'p7zip: ISO 9660 support'
'cdrtools: ISO 9660 support'
'fzf: fzf mode for TAB completion'
'smenu: smenu mode for TAB completion'
'udevil: (un)mount storage devices'
'udisks2: (un)mount storage devices'
)
source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/v${pkgver}.tar.gz")
sha256sums=('cb219ca6ce1b4a31ec98701a43da51142c8bc7f15a22cb81dda93f881e6f6877')
build() {
cd "$srcdir/${pkgname}-${pkgver}"
make PREFIX=/usr
}
package() {
cd "$srcdir/${pkgname}-${pkgver}"
make DESTDIR="${pkgdir}" MANDIR=/usr/share/man PREFIX=/usr install
}
|