mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-23 19:25:25 +03:00
41 lines
1.2 KiB
Text
41 lines
1.2 KiB
Text
# 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"
|
|
python2 setup.py build || return 1
|
|
}
|
|
|
|
package() {
|
|
cd "$_builddir"
|
|
python2 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"
|