blob: 54521f07d6772dec8d23c3ac7cd05a7e114d3444 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# Contributor: Denis Vadimov <me@bloody.pw>
pkgname=python-bpylist2
pkgver=4.1.1
pkgrel=1
pkgdesc="Parse and Generate binary plists and NSKeyedArchiver archives"
arch=('any')
url="https://github.com/parabolala/bpylist2"
license=('MIT')
depends=('python3')
makedepends=('python-setuptools')
source=("https://files.pythonhosted.org/packages/ca/34/eb90ff6be953f6e4df08d4e8c0b761bea144242b6d711e922113411cc631/bpylist2-4.1.1.tar.gz")
md5sums=('6f284eb91f997cfa0df3b4401aadf49e')
package() {
cd "${srcdir}/bpylist2-${pkgver}"
python setup.py install --root="$pkgdir"
}
|