summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: cf35e785ddb8678c7de7fac2739fbd6bed975700 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Maintainer: cyber-luna <cyber-luna@tuta.io>

pkgname='ldf'
pkgver=0.2.6
pkgrel=1
pkgdesc="report filesystem space info of devices and RAM/swap usage"
arch=('any')
url="https://codeberg.org/cyber-luna/ldf"
license=('GPL3')
makedepends=('git' 'gcc' 'make')
source=("git+https://codeberg.org/cyber-luna/ldf")
sha256sums=('SKIP')

build(){
	cd "$srcdir/$pkgname"
	make 
}

package(){
	cd "$srcdir/$pkgname"
	install -Dm755 $pkgname "$pkgdir/usr/bin/$pkgname"
	install -Dm644 man/$pkgname.1 "$pkgdir/usr/share/man/man1/$pkgname.1"
}