blob: b8c865f36803a1d0831ab1b2d76ccb1024bdc17d (
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
|
# Maintainer: Ripose <ripose@protonmail.com>
pkgname=memento
pkgver=1.4.1
pkgrel=0
pkgdesc="An mpv-based video player for studying Japanese."
arch=('x86_64')
url="https://ripose-jp.github.io/Memento/"
license=('GPL2')
depends=(
'mpv'
'qt6-base'
'qt6-svg'
'sqlite'
'json-c'
'libzip'
'mecab'
'mecab-ipadic'
)
makedepends=('git' 'make' 'cmake' 'gcc')
optdepends=(
'youtube-dl: streaming support'
'mpv-git: additional secondary subtitle support'
'noto-fonts-cjk: optimal font support'
)
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/ripose-jp/Memento/archive/refs/tags/v${pkgver}.tar.gz")
sha256sums=('2ce4f51ce3052dec467d5a8b7c3414178a33eab4ff3b72626fccb67887eaf90e')
prepare() {
mkdir -p ${srcdir}/build
}
build() {
cd ${srcdir}/build
cmake -DCMAKE_INSTALL_PREFIX:PATH=${pkgdir}/usr \
-DRELEASE_BUILD=ON \
-DCMAKE_BUILD_TYPE=Release \
-DMECAB_SUPPORT=ON \
"${srcdir}/Memento-${pkgver}"
cmake --build . -j $(grep -c ^processor /proc/cpuinfo)
}
package() {
cd ${srcdir}/build
make install
}
|