blob: 4b2020a3f4e82caba15dac4cb89e963a7a002942 (
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
|
# Maintainer: Kimiblock Moe
pkgname=python-amulet-zlib
pkgdesc="A Python and C++ wrapper around zlib"
url="https://github.com/Amulet-Team/Amulet-zlib"
license=("LicenseRef-Amulet-Team-License")
arch=(any)
pkgver=1.0.0a3
pkgrel=1
makedepends=(python-setuptools git python-wheel python-amulet-compiler-version python-packaging python-versioneer cmake)
depends=(python pybind11 python-amulet_pybind11_extensions)
source=(
"git+https://github.com/Amulet-Team/Amulet-zlib.git#tag=${pkgver}"
)
md5sums=('99a44b07d3b60d1563c08997f2b387a3')
function prepare() {
cd "${srcdir}/Amulet-zlib"
git submodule init
git submodule update
}
function build() {
cd "${srcdir}/Amulet-zlib"
python setup.py build
}
function package() {
cd "${srcdir}/Amulet-zlib"
python setup.py install --root="$pkgdir" --optimize=1
}
|