summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--python-html-text/.SRCINFO16
-rw-r--r--python-html-text/PKGBUILD25
2 files changed, 41 insertions, 0 deletions
diff --git a/python-html-text/.SRCINFO b/python-html-text/.SRCINFO
new file mode 100644
index 0000000..68e11d2
--- /dev/null
+++ b/python-html-text/.SRCINFO
@@ -0,0 +1,16 @@
1pkgbase = python-html-text
2 pkgdesc = Python library to extract text from HTML
3 pkgver = 0.7.1
4 pkgrel = 1
5 url = https://github.com/zytedata/html-text
6 arch = any
7 license = MIT
8 makedepends = python-build
9 makedepends = python-installer
10 makedepends = python-wheel
11 makedepends = python-hatchling
12 depends = python-lxml
13 source = python-html-text-0.7.1.tar.gz::https://github.com/zytedata/html-text/archive/0.7.1.tar.gz
14 sha256sums = 10c841f375e5e31ef25d484c6e4bef931be2e58c2fb23cc0aec395999ab81865
15
16pkgname = python-html-text
diff --git a/python-html-text/PKGBUILD b/python-html-text/PKGBUILD
new file mode 100644
index 0000000..5e38569
--- /dev/null
+++ b/python-html-text/PKGBUILD
@@ -0,0 +1,25 @@
1# Maintainer: Yigit Sever <yigit at yigitsever dot com>
2pkgname=python-html-text
3_pkgname=html-text
4pkgver=0.7.1
5pkgrel=1
6pkgdesc="Python library to extract text from HTML"
7arch=('any')
8url="https://github.com/zytedata/html-text"
9license=('MIT')
10depends=(python-lxml)
11makedepends=(python-build python-installer python-wheel python-hatchling)
12source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/${pkgver}.tar.gz")
13sha256sums=('10c841f375e5e31ef25d484c6e4bef931be2e58c2fb23cc0aec395999ab81865')
14
15build() {
16 cd "${_pkgname}-${pkgver}"
17 python -m build --wheel --no-isolation
18}
19
20package() {
21 cd "${_pkgname}-${pkgver}"
22 python -m installer --destdir="$pkgdir" dist/*.whl
23 install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
24 install -Dm644 README.rst "${pkgdir}/usr/share/doc/${pkgname}/README.rst"
25}