summaryrefslogtreecommitdiffstats
path: root/testing/py-notifymail/APKBUILD
blob: 24064d8f2a01da985784ef96c8c5e464d1b398e2 (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-notifymail
_pkgname=notifymail
pkgver=1.0
pkgrel=0
pkgdesc="A Python module to send emails"
url="https://github.com/davidfstr/notifymail/"
arch="noarch"
license="MIT"
depends="python2"
depends_dev=""
makedepends="python2-dev py-setuptools"
install=""
subpackages=""
source="https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/$_pkgname/$_pkgname-$pkgver.tar.gz"

_builddir="$srcdir"/$_pkgname-$pkgver
prepare() {
	local i
	cd "$_builddir"
	for i in $source; do
		case $i in
		*.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;;
		esac
	done
}

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

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

md5sums="cb4041149033e2e65f4c3bb1e1402324  notifymail-1.0.tar.gz"
sha256sums="500cdf0601c9e90d4f1258f837393f26dc5610f0a583e031bc3f533bb5e45d5a  notifymail-1.0.tar.gz"
sha512sums="173b87b2b40da85a988c26aecb055c29ae19b3117db9cd9af43574e625afa96eee19ce988d3401fef60f015985157c0ddb6e81ed89f7b7ed5e5b6cee9a279958  notifymail-1.0.tar.gz"