core/libssh/PKGBUILD

33 lines
740 B
Bash
Raw Normal View History

2011-07-24 10:06:03 +08:00
#
# Core Packages for Chakra, part of chakra-project.org
#
2013-07-20 01:58:59 +08:00
# maintainer <inkane@chakra-project.org>
# contributor <abveritas[at]chakra-project[dot]org>
2011-07-24 05:03:25 +08:00
pkgname=libssh
pkgver=0.6.3
2011-09-18 23:34:26 +08:00
pkgrel=1
2011-07-24 05:03:25 +08:00
pkgdesc="Library for accessing ssh client services through C libraries"
url="http://www.libssh.org/"
license=('LGPL')
arch=('x86_64')
2011-07-24 05:03:25 +08:00
depends=('openssl')
2011-09-18 23:34:26 +08:00
makedepends=('cmake' 'doxygen')
source=("https://red.libssh.org/attachments/download/87/${pkgname}-${pkgver}.tar.xz")
md5sums=('66cf16e77f60913b4d54f18c92cdbf71')
2011-07-24 05:03:25 +08:00
build() {
2011-09-18 23:34:26 +08:00
cd "${srcdir}"
2011-07-24 05:03:25 +08:00
mkdir build
cd build
cmake ../${pkgname}-${pkgver} \
-DCMAKE_INSTALL_PREFIX=/usr \
2011-09-18 23:34:26 +08:00
-DCMAKE_BUILD_TYPE=Release
make
2011-07-24 05:03:25 +08:00
}
package(){
2011-09-18 23:34:26 +08:00
cd "${srcdir}"/build
make DESTDIR="${pkgdir}" install
2011-07-24 05:03:25 +08:00
}