blob: 8edbd5f6da58f415c7d5ec5a45b5fc3e105a1514 (
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
|
# Maintainer : silverhikari <kerrickethan@gmail.com>
# Contributor: codestation <codestation404@gmail.com>
pkgname=qcma
pkgver=0.4.1
pkgrel=3
pkgdesc="Content Manager Assistant for the PS Vita"
arch=("i686" "x86_64")
url="https://github.com/codestation/qcma"
license=('GPL')
makedepends=('qt5-tools')
depends=('qt5-base' 'libvitamtp>=2.5.9' 'libnotify')
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/codestation/${pkgname}/archive/v${pkgver}.tar.gz")
sha256sums=('f107b6cfd69f7346cd1e7a1f125f866f12d1e1a63a22f44981043f58d8811f80')
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
lrelease-qt5 common/resources/translations/*.ts
qmake-qt5 qcma.pro PREFIX="/usr" CONFIG+=DISABLE_FFMPEG
make
}
package() {
cd "${srcdir}/${pkgname}-${pkgver}"
make INSTALL_ROOT="${pkgdir}" install
}
|