mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-24 11:45:18 +03:00
28 lines
802 B
Text
28 lines
802 B
Text
# Contributor: Bart Ribbers <bribbers@disroot.org>
|
|
# Maintainer: Bart Ribbers <bribbers@disroot.org>
|
|
pkgname=py3-json-database
|
|
pkgver=0.5.5
|
|
pkgrel=1
|
|
pkgdesc="Searchable json database with persistence"
|
|
url="https://github.com/HelloChatterbox/json_database"
|
|
arch="noarch"
|
|
license="MIT"
|
|
depends="
|
|
py3-fasteners
|
|
py3-xdg
|
|
python3
|
|
"
|
|
makedepends="py3-setuptools"
|
|
source="https://pypi.python.org/packages/source/j/json_database/json_database-$pkgver.tar.gz"
|
|
options="!check" # No tests
|
|
builddir="$srcdir/json_database-$pkgver"
|
|
|
|
build() {
|
|
python3 setup.py build
|
|
}
|
|
|
|
package() {
|
|
python3 setup.py install --prefix=/usr --root="$pkgdir"
|
|
}
|
|
|
|
sha512sums="529a44b210fc77ec6976a3d445d74f3c80f8f548485454b42479c082fa69d77431d1845c13fec3031e3fe7e65e579417d7cfbc41be48afe52cdfd89d7561b792 json_database-0.5.5.tar.gz"
|