summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: e36697959085b0d97f44c0afe2e8b211c2691554 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20

_project_name='aioftp'
pkgname='python-aioftp'
pkgver=0.10.1
pkgrel=1
pkgdesc="ftp client/server for asyncio"
url="http://pohmelie.github.io/aioftp/"
arch=('any')
license=('WTFPL')
depends=('python')
makedepends=('python' 'python-setuptools')
source=("https://github.com/pohmelie/${_project_name}/archive/${pkgver}.tar.gz")

package() {
  cd "${srcdir}/${_project_name}-${pkgver}"
  python3 setup.py build
  python3 setup.py install --prefix=/usr --root="${pkgdir}"
}

md5sums=('8f26a1fcee927ef5b87b19cbe60d77b3')