summaryrefslogtreecommitdiffstats
path: root/guile-ssh/PKGBUILD
blob: ca87fb4c181e4764c016256f3efc1e076b1016a8 (plain) (blame)
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
35
36
37
38
39
40
41
42
43
44
45
# Maintainer: lantw44 (at) gmail (dot) com

pkgname=guile-ssh
pkgver=0.15.1
pkgrel=1
pkgdesc='SSH module for Guile based on libssh'
arch=('x86_64' 'i686' 'armv7h')
url="https://github.com/artyom-poptsov/guile-ssh"
license=('GPL3')
depends=(
  'guile>=2.0.9'
  'libssh>=0.7.3')
source=(
  "${pkgname}-${pkgver}.tar.gz::https://github.com/artyom-poptsov/guile-ssh/archive/v${pkgver}.tar.gz")
sha256sums=(
  '434fdfdcd439d038c15e40290a8d3187837ad969577573baacb7b105c0c3628f')

prepare() {
    cd "${srcdir}/${pkgname}-${pkgver}"
    local source_file
    for source_file in "${source[@]}"; do
        case "${source_file}" in
            *.patch)
                patch -p1 < "${srcdir}/${source_file}"
                ;;
        esac
    done
}

build() {
    cd "${srcdir}/${pkgname}-${pkgver}"
    autoreconf -fi
    ./configure --prefix=/usr --disable-rpath
    make
}

check() {
    cd "${srcdir}/${pkgname}-${pkgver}"
    make check
}

package() {
    cd "${srcdir}/${pkgname}-${pkgver}"
    make DESTDIR="${pkgdir}" install
}