blob: b7d4dd0afd41473c7b0e1bdcd3ca4241f50e94b5 (
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
# Maintainer: HurricanePootis <hurricanepootis@protonmail.com>
pkgname=imgbrd-grabber
pkgver=7.9.1
pkgrel=3
pkgdesc="Very customizable imageboard/booru downloader with powerful filenaming features."
arch=('x86_64')
url="https://github.com/Bionus/imgbrd-grabber"
license=('Apache')
depends=('qt5-multimedia' 'qt5-declarative' 'nodejs' 'qt5-networkauth' 'qt5-base' 'krb5')
makedepends=('git' 'cmake' 'qt5-tools' 'npm')
optdepends=('openssl: Access HTTPS sources')
conflicts=("imgbrd-grabber-git" 'imgbrd-grabber-bin' 'imgbrd-grabber-appimage')
source=('git+https://github.com/Bionus/imgbrd-grabber.git#tag=v'${pkgver}''
'git+https://github.com/LaurentGomila/qt-android-cmake.git'
'git+https://github.com/sakra/cotire.git'
'git+https://github.com/lexbor/lexbor.git'
'git+https://github.com/catchorg/Catch2.git')
sha256sums=('SKIP'
'SKIP'
'SKIP'
'SKIP'
'SKIP')
prepare() {
cd "$srcdir/${pkgname}"
git submodule init
git config submodule.cmake/qt-android-cmake.url "$srcdir/qt-android-cmake"
git config submodule.cmake/cotire.url "$srcdir/cotire"
git config submodule.tests/src/vendor/catch.url "$srcdir/Catch2"
git config submodule.lib/vendor/lexbor.url "$srcdir/lexbor"
git -c protocol.file.allow=always submodule update
}
build() {
cd "$srcdir/${pkgname}/src/sites" && npm install --no-optional
mkdir -p "$srcdir/build"
cd "$srcdir/build"
cmake "$srcdir/${pkgname%}/src" \
-DCMAKE_INSTALL_PREFIX=/usr \
-DUSE_QSCINTILLA=0 \
-DUSE_BREAKPAD=O \
-Wno-dev
make
}
package() {
cd "$srcdir/build"
make DESTDIR="$pkgdir/" install
touch "$pkgdir/usr/share/Grabber/settings.ini"
}
|