summaryrefslogtreecommitdiffstats
path: root/testing/py-paramiko/APKBUILD
blob: c09e6f2e149cbc50e0425da618fdcc59eea504a7 (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
30
31
32
33
34
35
36
37
38
39
40
41
# Contributor: Fabian Affolter <fabian@affolter-engineering.ch>
# Maintainer: Fabian Affolter <fabian@affolter-engineering.ch>
pkgname=py-paramiko
_pkgname=paramiko
pkgver=1.7.7.1
pkgrel=0
pkgdesc="SSH2 protocol library for Python"
url="http://www.lag.net/paramiko/"
arch="noarch"
license="LGPL2+"
depends="py-crypto"
depends_dev=""
makedepends="python-dev"
install=""
subpackages="$pkgname-demos $pkgname-docs"
source="http://www.lag.net/paramiko/download/$_pkgname-$pkgver.tar.gz"
_builddir="$srcdir"/$_pkgname-$pkgver

build() {
	cd "$_builddir"
	python setup.py build || return 1
}

package() {
	cd "$_builddir"
	python setup.py install --prefix=/usr --root="$pkgdir" || return 1
}

demos() {
        # Put the demo files into a seperate package
        mkdir -p "$subpkgdir"/usr/share/doc/"$pkgname"/demos || return 1
        mv "$_builddir"/demos "$subpkgdir"/usr/share/doc/"$pkgname"/ || return 1
}

docs() {
        # Put the documentation files into a seperate package
        mkdir -p "$subpkgdir"/usr/share/doc/"$pkgname"/docs || return 1
        mv "$_builddir"/docs "$subpkgdir"/usr/share/doc/"$pkgname"/ || return 1
}

md5sums="ce8e2c254378312a264206f65c354d72  paramiko-1.7.7.1.tar.gz"