summaryrefslogtreecommitdiff
path: root/manualPorts/cssh/Pkgfile
blob: 69fbf86fd80fa42cc6ea8cddb01356be93992130 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# Description: Parallel ssh client written in C
# URL: https://github.com/andreasbaumann/cssh
# Maintainer: Erich Eckner, crux at eckner dot net
# Depends on: libssh

name=cssh
version=0.r98.43aa69b
release=1
source=("https://github.com/andreasbaumann/cssh/archive/${version##*.}.zip")

build() {

    cd ${name}-${version##*.}*
    mkdir build
    cd build
    cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release ..
    make
    make DESTDIR=$PKG install

}