mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-24 19:55:26 +03:00
28 lines
850 B
Text
28 lines
850 B
Text
# Contributor: Michał Polański <michal@polanski.me>
|
|
# Maintainer: Michał Polański <michal@polanski.me>
|
|
pkgname=pass2csv
|
|
pkgver=1.0.0
|
|
pkgrel=2
|
|
pkgdesc="Export pass(1), \"the standard unix password manager\", to CSV"
|
|
url="https://github.com/reinefjord/pass2csv"
|
|
license="MIT"
|
|
arch="noarch"
|
|
depends="python3 py3-gnupg"
|
|
makedepends="py3-gpep517 py3-installer py3-setuptools py3-wheel"
|
|
source="https://github.com/reinefjord/pass2csv/archive/v$pkgver/pass2csv-$pkgver.tar.gz"
|
|
options="!check" # no test suite
|
|
|
|
build() {
|
|
gpep517 build-wheel \
|
|
--wheel-dir dist \
|
|
--output-fd 3 3>&1 >&2
|
|
}
|
|
|
|
package() {
|
|
python3 -m installer -d "$pkgdir" \
|
|
dist/pass2csv-$pkgver-py3-none-any.whl
|
|
}
|
|
|
|
sha512sums="
|
|
6fefa5e5771ab93bf0324106b2ed54e8fb2ade7a212c5918eba44cfa7b97f2848b4702ffca8c6c0ba956817dac2d06dd1cbe341a68237e11a046c7c5755fe4a2 pass2csv-1.0.0.tar.gz
|
|
"
|