blob: 56e1923537be0fcaa6484b37a9863735846f5466 (
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
|
# Maintainer: Nikita Ivanov <nikita dot vyach dot ivanov at gmail dot com>
pkgname=ictree
pkgver='0.2.2'
pkgrel=1
pkgdesc="Like tree but interactive"
arch=('x86_64' 'i686' 'armv7h' 'aarch64')
url="https://github.com/NikitaIvanovV/ictree"
license=('GPL3')
depends=('glibc')
optdepends=('xsel: for copying selected item into X clipboard')
makedepends=('git')
source=("git+https://github.com/NikitaIvanovV/ictree.git#tag=v$pkgver?signed")
validpgpkeys=('701DE74D84F87EE1BC91CD216E656AC5B97B5133')
sha512sums=('SKIP')
prepare() {
cd "$pkgname"
git submodule init
git submodule update
}
build() {
cd "$pkgname"
make
}
package() {
cd "$pkgname"
make PREFIX="/usr" DESTDIR="$pkgdir/" install
}
|