fixed git PKGBUILDs

This commit is contained in:
Martchus 2015-09-06 21:53:25 +02:00
parent a9cc4d3533
commit 4c71b1861e
7 changed files with 28 additions and 21 deletions

View File

@ -1,7 +1,8 @@
# Maintainer: Martchus <martchus@gmx.net> # Maintainer: Martchus <martchus@gmx.net>
_name=c++utilities
pkgname=c++utilities-git pkgname=c++utilities-git
pkgver=2.0.1 pkgver=50.4d6bf67
pkgrel=3 pkgrel=4
arch=('i686' 'x86_64') arch=('i686' 'x86_64')
pkgdesc="Common C++ classes and routines used by my applications such pkgdesc="Common C++ classes and routines used by my applications such
as argument parser, IO and conversion utilities (git version)." as argument parser, IO and conversion utilities (git version)."
@ -22,7 +23,7 @@ pkgver() {
build() { build() {
cd "${srcdir}/${pkgname}" cd "${srcdir}/${pkgname}"
INSTALL_ROOT=$pkgdir/usr/ qmake-qt5 "$pkgname.pro" INSTALL_ROOT=$pkgdir/usr/ qmake-qt5 "$_name.pro"
make -j 4 make -j 4
} }

View File

@ -1,7 +1,8 @@
# Maintainer: Martchus <martchus@gmx.net> # Maintainer: Martchus <martchus@gmx.net>
_name=passwordfile
pkgname=passwordfile-git pkgname=passwordfile-git
pkgver=3.0.0 pkgver=20.bcefbb6
pkgrel=3 pkgrel=4
arch=('i686' 'x86_64') arch=('i686' 'x86_64')
pkgdesc="C++ library to read/write passwords from/to encrypted files (using AES-256-CBC via OpenSSL, git version)." pkgdesc="C++ library to read/write passwords from/to encrypted files (using AES-256-CBC via OpenSSL, git version)."
license=('GPL') license=('GPL')
@ -22,7 +23,7 @@ pkgver() {
build() { build() {
cd "${srcdir}/${pkgname}" cd "${srcdir}/${pkgname}"
INSTALL_ROOT=$pkgdir/usr/ qmake-qt5 "$pkgname.pro" INSTALL_ROOT=$pkgdir/usr/ qmake-qt5 "$_name.pro"
make -j 4 make -j 4
} }

View File

@ -1,7 +1,8 @@
# Maintainer: Martchus <martchus@gmx.net> # Maintainer: Martchus <martchus@gmx.net>
_name=passwordmanager
pkgname=passwordmanager-git pkgname=passwordmanager-git
pkgver=2.0.7 pkgver=36.90d37ae
pkgrel=7 pkgrel=8
arch=('i686' 'x86_64') arch=('i686' 'x86_64')
pkgdesc="A simple password store using AES-256-CBC encryption via OpenSSL (git version)." pkgdesc="A simple password store using AES-256-CBC encryption via OpenSSL (git version)."
license=('GPL') license=('GPL')
@ -9,7 +10,7 @@ depends=('qt5-base' 'qtutilities' 'passwordfile' 'openssl' 'libxkbcommon-x11' 'd
makedepends=('qt5-tools') makedepends=('qt5-tools')
provides=('passwordmanager') provides=('passwordmanager')
conflicts=('passwordmanager') conflicts=('passwordmanager')
install=${pkgname}.install install=${_name}.install
url="https://github.com/Martchus/passwordmanager" url="https://github.com/Martchus/passwordmanager"
source=("${pkgname}::git://github.com/Martchus/passwordmanager.git") source=("${pkgname}::git://github.com/Martchus/passwordmanager.git")
_reponame=passwordmanager _reponame=passwordmanager
@ -22,7 +23,7 @@ pkgver() {
build() { build() {
cd "${srcdir}/${pkgname}" cd "${srcdir}/${pkgname}"
INSTALL_ROOT=$pkgdir/usr/ qmake-qt5 "$pkgname.pro" INSTALL_ROOT=$pkgdir/usr/ qmake-qt5 "$_name.pro"
make -j 4 make -j 4
} }

View File

@ -1,7 +1,8 @@
# Maintainer: Martchus <martchus@gmx.net> # Maintainer: Martchus <martchus@gmx.net>
_name=qtutilities
pkgname=qtutilities-git pkgname=qtutilities-git
pkgver=2.0.1 pkgver=35.721e79d
pkgrel=3 pkgrel=4
arch=('i686' 'x86_64') arch=('i686' 'x86_64')
pkgdesc="Common Qt related C++ classes and routines used by my pkgdesc="Common Qt related C++ classes and routines used by my
applications such as dialogs, widgets and models (git version)." applications such as dialogs, widgets and models (git version)."
@ -22,7 +23,7 @@ pkgver() {
build() { build() {
cd "${srcdir}/${pkgname}" cd "${srcdir}/${pkgname}"
INSTALL_ROOT=$pkgdir/usr/ qmake-qt5 "$pkgname.pro" INSTALL_ROOT=$pkgdir/usr/ qmake-qt5 "$_name.pro"
make -j 4 make -j 4
} }

View File

@ -2,8 +2,9 @@
# decide whether to link against the deprecated Qt WebKit module (in qt5-webkit package ~40 MB) or # decide whether to link against the deprecated Qt WebKit module (in qt5-webkit package ~40 MB) or
# the newer, chromium-based Qt WebEngine module (in qt5-webengine package ~100 MB) # the newer, chromium-based Qt WebEngine module (in qt5-webengine package ~100 MB)
_webviewprovider=qt5-webkit _webviewprovider=qt5-webkit
_name=tageditor
pkgname=tageditor-git pkgname=tageditor-git
pkgver=1.1.5 pkgver=66.77a0bc2
pkgrel=10 pkgrel=10
arch=('i686' 'x86_64') arch=('i686' 'x86_64')
pkgdesc="A tag editor with Qt GUI and command-line interface supporting MP4 (iTunes), ID3, Vorbis and Matroska (git version)." pkgdesc="A tag editor with Qt GUI and command-line interface supporting MP4 (iTunes), ID3, Vorbis and Matroska (git version)."
@ -12,7 +13,7 @@ depends=('qt5-script' $_webviewprovider 'qtutilities' 'tagparser' 'desktop-file-
makedepends=('qt5-tools') makedepends=('qt5-tools')
provides=('tageditor') provides=('tageditor')
conflicts=('tageditor') conflicts=('tageditor')
install=${pkgname}.install install=${_name}.install
url="https://github.com/Martchus/tageditor" url="https://github.com/Martchus/tageditor"
source=("${pkgname}::git://github.com/Martchus/tageditor.git") source=("${pkgname}::git://github.com/Martchus/tageditor.git")
_reponame=tageditor _reponame=tageditor
@ -29,7 +30,7 @@ build() {
if [[ _webviewprovider == qt5-webkit ]]; then if [[ _webviewprovider == qt5-webkit ]]; then
cfg+=(forcewebkit) cfg+=(forcewebkit)
fi fi
INSTALL_ROOT=$pkgdir/usr/ qmake-qt5 "$pkgname.pro" $(for val in "${cfg[@]}"; do echo -n "CONFIG+=$val "; done) INSTALL_ROOT=$pkgdir/usr/ qmake-qt5 "$_name.pro" $(for val in "${cfg[@]}"; do echo -n "CONFIG+=$val "; done)
make -j 4 make -j 4
} }

View File

@ -1,6 +1,7 @@
# Maintainer: Martchus <martchus@gmx.net> # Maintainer: Martchus <martchus@gmx.net>
_name=tagparser
pkgname=tagparser-git pkgname=tagparser-git
pkgver=2.0.1 pkgver=52.aa50c2d
pkgrel=1 pkgrel=1
arch=('i686' 'x86_64') arch=('i686' 'x86_64')
pkgdesc="C++ library for reading and writing MP4 (iTunes), ID3, Vorbis and Matroska tags." pkgdesc="C++ library for reading and writing MP4 (iTunes), ID3, Vorbis and Matroska tags."
@ -21,7 +22,7 @@ pkgver() {
build() { build() {
cd "${srcdir}/${pkgname}" cd "${srcdir}/${pkgname}"
INSTALL_ROOT=$pkgdir/usr/ qmake-qt5 "$pkgname.pro" INSTALL_ROOT=$pkgdir/usr/ qmake-qt5 "$_name.pro"
make -j 4 make -j 4
} }

View File

@ -1,6 +1,7 @@
# Maintainer: Martchus <martchus@gmx.net> # Maintainer: Martchus <martchus@gmx.net>
_name=videodownloader
pkgname=videodownloader-git pkgname=videodownloader-git
pkgver=1.0.8 pkgver=27.8960d5b
pkgrel=4 pkgrel=4
arch=('i686' 'x86_64') arch=('i686' 'x86_64')
pkgdesc="A video downloader with Qt GUI (currently only YouTube is maintained, git version)." pkgdesc="A video downloader with Qt GUI (currently only YouTube is maintained, git version)."
@ -9,7 +10,7 @@ depends=('qtutilities' 'openssl' 'desktop-file-utils' 'xdg-utils')
makedepends=('qt5-tools') makedepends=('qt5-tools')
provides=('videodownloader') provides=('videodownloader')
conflicts=('videodownloader') conflicts=('videodownloader')
install=${pkgname}.install install=${_name}.install
url="https://github.com/Martchus/videodownloader" url="https://github.com/Martchus/videodownloader"
source=("${pkgname}::git://github.com/Martchus/videodownloader.git") source=("${pkgname}::git://github.com/Martchus/videodownloader.git")
_reponame=videodownloader _reponame=videodownloader
@ -22,7 +23,7 @@ pkgver() {
build() { build() {
cd "${srcdir}/${pkgname}" cd "${srcdir}/${pkgname}"
INSTALL_ROOT=$pkgdir/usr/ qmake-qt5 "$pkgname.pro" INSTALL_ROOT=$pkgdir/usr/ qmake-qt5 "$_name.pro"
make -j 4 make -j 4
} }