summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 8f19089c6d1cdfc3ebe3fcb023974b797ecb3c80 (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

# Maintainer: noTmeDev <notmedev28@gmail.com>
pkgname='termtree'
pkgver=2.2.7
pkgrel=1
pkgdesc="A file tree view"
arch=('x86_64')
url="https://github.com/bendikMichal/termtree"
license=('MIT')
depends=('glibc')
makedepends=('git' 'mingw-w64-gcc' 'make')
source=("git+https://github.com/bendikMichal/$pkgname")
md5sums=('SKIP')

# pkgver() {
#   cd "$pkgname"
#   git describe --long --abbrev=7 | sed 's/\([^-]*-g\)/r\1/;s/-/./g'
# }

build() {
	cd "$pkgname"
	make
}

package() {
	cd "$pkgname"
	make install
}