Files
extra/redo-python/PKGBUILD
2025-06-22 20:39:04 -05:00

23 lines
705 B
Bash

# Maintainer: Jesus E. <heckyel@riseup.net>
pkgname=redo-python
_pkgname=redo
pkgver=0.42c
pkgrel=1
pkgdesc="Redo implementation in Python."
arch=('any')
license=('Apache-2.0')
url="https://github.com/apenwarr/redo"
depends=('python')
makedepends=('python-beautifulsoup4' 'python-markdown')
provides=('redo')
conflicts=('redo')
source=("https://github.com/apenwarr/redo/archive/redo-${pkgver}.tar.gz")
sha512sums=('764ef84cfb56d5dd883cf80f706a567491e1a679d136219c4db3c122386aad3cfbd28131dc231a91639f596d7b8819c4254e4e7fa38f917996ca8bf3e1a5dc19')
package() {
cd "${_pkgname}-${_pkgname}-${pkgver}"
make DESTDIR="${pkgdir}/" install
install -Dm644 LICENSE -t "$pkgdir/usr/share/licenses/$pkgname"
}