blob: d565e4cceb23648dc947cea29af183fb00c6d993 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
# Maintainer: Dominik Stanisław Suchora <suchora.dominik7@gmail.com>
pkgname='reliq'
pkgver=2.7.9b2ee74
pkgrel=1
pkgdesc='html parsing and searching tool'
arch=('any')
url='https://github.com/TUVIMEN/reliq'
license=('GPL-3.0-or-later')
provides=('reliq')
source=('git+https://github.com/TUVIMEN/reliq')
sha256sums=('SKIP')
makedepends=('git')
prepare() {
cd "${pkgname}"
git revert --no-commit 9b2ee7439ee66a1ba71a47aadfa933f5f955be3c
}
build() {
cd "${pkgname}"
make
}
package(){
cd "${pkgname}"
make install PREFIX="${pkgdir}/usr"
install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
}
|