mirror of
https://codeberg.org/privacy1st/image-width-limit
synced 2024-12-04 22:25:03 +01:00
18 lines
466 B
Bash
18 lines
466 B
Bash
# Maintainer: Daniel Langbein <daniel@systemli.org>
|
|
_pkgname=image-width-limit
|
|
_reponame=arch
|
|
|
|
pkgname="de-p1st-$_pkgname"
|
|
pkgver=1.0.0
|
|
pkgrel=0
|
|
pkgdesc="Script to limit HTML image width"
|
|
arch=('any')
|
|
license=('MIT')
|
|
depends=('python3' 'python-beautifulsoup4' 'python-html5lib')
|
|
source=("${_pkgname}".py)
|
|
sha256sums=('88b20a75bdfd7f0f0ff6054ff8a6e77783e21488ef3d8ecc5cfadb7fcdf37d6e')
|
|
|
|
package() {
|
|
install -Dm0755 "${_pkgname}".py "$pkgdir"/usr/bin/"${pkgname}"
|
|
}
|