diff options
author | root <root@rshg047.dnsready.net> | 2011-06-02 22:47:10 +0000 |
---|---|---|
committer | root <root@rshg047.dnsready.net> | 2011-06-02 22:47:10 +0000 |
commit | 2d8c4c44185a682290ccde4d23132ae3acf01678 (patch) | |
tree | c23dfddada868c72eb548f8159b7fd0b1179e02c /extra/libssh | |
parent | e7b9c9697e6a50c3b9e78941fa95ba11c716d238 (diff) |
Thu Jun 2 22:47:10 UTC 2011
Diffstat (limited to 'extra/libssh')
-rw-r--r-- | extra/libssh/PKGBUILD | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/extra/libssh/PKGBUILD b/extra/libssh/PKGBUILD index e6acc5d23..34d929086 100644 --- a/extra/libssh/PKGBUILD +++ b/extra/libssh/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 107427 2011-01-24 20:24:15Z andrea $ +# $Id: PKGBUILD 126134 2011-06-01 18:06:44Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> # Contributor: ice-man <icemanf@gmail.com> # Contributor: sergeantspoon <sergeantspoon@archlinux.us> pkgname=libssh -pkgver=0.4.8 +pkgver=0.5.0 pkgrel=1 pkgdesc="Library for accessing ssh client services through C libraries" url="http://www.libssh.org/" @@ -12,11 +12,11 @@ license=('LGPL') arch=('i686' 'x86_64') depends=('openssl') makedepends=('cmake' 'doxygen') -source=("http://www.libssh.org/files/0.4/${pkgname}-${pkgver}.tar.gz") -md5sums=('d97b3feea1abe047ca8cf86d06e4b789') +source=("http://www.libssh.org/files/0.5/${pkgname}-${pkgver}.tar.gz") +md5sums=('9b37f45751c0ae7ba66099c1fb136946') build() { - cd ${srcdir} + cd "${srcdir}" mkdir build cd build cmake ../${pkgname}-${pkgver} \ @@ -26,6 +26,6 @@ build() { } package(){ - cd ${srcdir}/build - make DESTDIR=${pkgdir} install + cd "${srcdir}"/build + make DESTDIR="${pkgdir}" install } |