blob: df68d938a9a30ad81bc7c7d88d5d3c11838acff9 (
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
|
# Maintainer: Gustavo Alvarez <sl1pkn07@gmail.com>
# Contributor: codestation <codestation404@gmail.com>
pkgname=qcma-git
pkgver=0.4.1.15.g590236e
pkgrel=1
pkgdesc="Content Manager Assistant for the PS Vita. (GIT version)"
arch=('x86_64')
url='https://github.com/codestation/qcma'
license=('GPL')
depends=(
'gcc-libs' # libgcc_s.so libstdc++.so
'glibc' # libc.so libm.so
'glib2' 'libgobject-2.0.so'
'qt6-base' # libQt6Core.so libQt6Gui.so libQt6Network.so libQt6Sql.so libQt6Widgets.so
'libnotify' 'libnotify.so'
'libvitamtp' # libvitamtp.so
'ffmpeg' 'libavcodec.so' 'libavformat.so' 'libavutil.so'
'hicolor-icon-theme'
)
makedepends=(
'git'
'qt6-tools'
)
conflicts=(
'qcma-appindicator-git'
'qcma-kdenotifier-git'
)
source=('git+https://github.com/codestation/qcma.git#branch=qt6')
sha256sums=('SKIP')
options=('debug')
pkgver() {
cd qcma
echo "$(git describe --long --tags | tr - . | tr -d v)"
}
prepare() {
mkdir -p build
}
build() {
cd build
/usr/lib/qt6/bin/lrelease ../qcma/common/resources/translations/*.ts
qmake6 ../qcma PREFIX=/usr
make
}
package() {
make -C build INSTALL_ROOT="${pkgdir}" install
}
|