diff options
Diffstat (limited to 'PKGBUILD')
-rw-r--r-- | PKGBUILD | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 0000000..be44de8 --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,36 @@ +# Maintainer: jc_gargma <jc_gargma@iserlohn-fortress.net> +# Maintainer (AUR): codestation <codestation404@gmail.com> + +# # I maintain this because: +# I use it and it is not in an official repo + +pkgname=qcma +pkgver=0.4.1 +pkgrel=2 +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' 'ffmpeg' 'libnotify') +source=("${pkgname}-${pkgver}.tar.gz::https://github.com/codestation/${pkgname}/archive/v${pkgver}.tar.gz" + "qcma-avdecoder.patch") +sha256sums=('f107b6cfd69f7346cd1e7a1f125f866f12d1e1a63a22f44981043f58d8811f80' '1a8acfe28c5bb1ead66805da76b09d28cf858ea55858ccc5e6362b1c053fd9d9') + +prepare() { + cd $pkgname-$pkgver + patch -Np1 -i "${srcdir}/qcma-avdecoder.patch" +} + +build() { + cd "${srcdir}/${pkgname}-${pkgver}" + + lrelease-qt5 common/resources/translations/*.ts + qmake-qt5 qcma.pro PREFIX="/usr" + make +} + +package() { + cd "${srcdir}/${pkgname}-${pkgver}" + make INSTALL_ROOT="${pkgdir}" install +} |