diff --git a/c++utilities/git/PKGBUILD b/c++utilities/git/PKGBUILD index 55169bc5..60a9fa3d 100644 --- a/c++utilities/git/PKGBUILD +++ b/c++utilities/git/PKGBUILD @@ -7,7 +7,7 @@ _name=c++utilities _reponame=cpp-utilities pkgname=c++utilities-git pkgver=50.4d6bf67 -pkgrel=6 +pkgrel=1 arch=('i686' 'x86_64') pkgdesc="Common C++ classes and routines used by my applications such as argument parser, IO and conversion utilities (git version)." license=('GPL') @@ -26,11 +26,11 @@ pkgver() { build() { cd "$srcdir/${PROJECT_DIR_NAME:-$_reponame}" - cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX="${pkgdir}/usr" + cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX="/usr" make } package() { cd "$srcdir/${PROJECT_DIR_NAME:-$_reponame}" - make install + make DESTDIR="${pkgdir}" install } diff --git a/passwordfile/git/PKGBUILD b/passwordfile/git/PKGBUILD index 39d55cb3..1c1f4a9a 100644 --- a/passwordfile/git/PKGBUILD +++ b/passwordfile/git/PKGBUILD @@ -7,7 +7,7 @@ _name=passwordfile _reponame=passwordfile pkgname=passwordfile-git pkgver=20.bcefbb6 -pkgrel=6 +pkgrel=1 arch=('i686' 'x86_64') pkgdesc="C++ library to read/write passwords from/to encrypted files (using AES-256-CBC via OpenSSL, git version)." license=('GPL') @@ -27,11 +27,11 @@ pkgver() { build() { cd "$srcdir/${PROJECT_DIR_NAME:-$_reponame}" - cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX="${pkgdir}/usr" + cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX="/usr" make } package() { cd "$srcdir/${PROJECT_DIR_NAME:-$_reponame}" - make install + make DESTDIR="${pkgdir}" install } diff --git a/passwordmanager/git/PKGBUILD b/passwordmanager/git/PKGBUILD index f50b4897..a5092408 100644 --- a/passwordmanager/git/PKGBUILD +++ b/passwordmanager/git/PKGBUILD @@ -7,7 +7,7 @@ _name=passwordmanager _reponame=passwordmanager pkgname=passwordmanager-git pkgver=36.90d37ae -pkgrel=10 +pkgrel=1 arch=('i686' 'x86_64') pkgdesc="A simple password store using AES-256-CBC encryption via OpenSSL (git version)." license=('GPL') @@ -27,11 +27,11 @@ pkgver() { build() { cd "$srcdir/${PROJECT_DIR_NAME:-$_reponame}" - cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX="${pkgdir}/usr" + cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX="/usr" -DQUICK_GUI="no" make } package() { cd "$srcdir/${PROJECT_DIR_NAME:-$_reponame}" - make install + make DESTDIR="${pkgdir}" install } diff --git a/qtutilities/git/PKGBUILD b/qtutilities/git/PKGBUILD index 9ae1eb38..48c6f61c 100644 --- a/qtutilities/git/PKGBUILD +++ b/qtutilities/git/PKGBUILD @@ -26,11 +26,11 @@ pkgver() { build() { cd "$srcdir/${PROJECT_DIR_NAME:-$_reponame}" - cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX="${pkgdir}/usr" + cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX="/usr" make } package() { cd "$srcdir/${PROJECT_DIR_NAME:-$_reponame}" - make install + make DESTDIR="${pkgdir}" install } diff --git a/repoindex/git/PKGBUILD b/repoindex/git/PKGBUILD index 752c34e6..b41d63cc 100644 --- a/repoindex/git/PKGBUILD +++ b/repoindex/git/PKGBUILD @@ -11,7 +11,7 @@ arch=('i686' 'x86_64') pkgdesc="Repository browser for Arch Linux (git version)." license=('GPL') depends=('qt5-base' 'qt5-websockets' 'karchive' 'pacman' 'c++utilities') -makedepends=('cmake' 'git' 'yuicompressor') +makedepends=('cmake' 'git' 'yuicompressor' 'qtutilities') backup=("etc/${_reponame}.conf") url="https://github.com/Martchus/${_reponame}" options=(emptydirs) @@ -25,7 +25,7 @@ pkgver() { build() { cd "$srcdir/${PROJECT_DIR_NAME:-$_reponame}" - cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX="${pkgdir}/usr" + cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX="/usr" make } @@ -38,7 +38,7 @@ package_repoindex() { # install files cd "$srcdir/${PROJECT_DIR_NAME:-$_reponame}" - make install-binary install-service install-config + make DESTDIR="${pkgdir}" install-binary install-service install-config # make directories for cache and data mkdir -p "$pkgdir/var/cache/$_reponame" @@ -57,10 +57,10 @@ package_repoindex-header() { # must call cmake again to adjust install prefix cd "$srcdir/${PROJECT_DIR_NAME:-$_reponame}" - cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX="${pkgdir}/usr" + cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX="/usr" # install files - make install-header + make DESTDIR="${pkgdir}" install-header } package_repoindex-web() { @@ -71,10 +71,10 @@ package_repoindex-web() { # must call cmake again to adjust install prefix cd "$srcdir/${PROJECT_DIR_NAME:-$_reponame}" - cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX="${pkgdir}/usr" + cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX="/usr" # install files - make install-web + make DESTDIR="${pkgdir}" install-web } package_repoindex-gui() { @@ -85,8 +85,8 @@ package_repoindex-gui() { # must call cmake again to adjust install prefix cd "$srcdir/${PROJECT_DIR_NAME:-$_reponame}" - cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX="${pkgdir}/usr" + cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX="/usr" # install files - make install-binary-gui install-desktop + make DESTDIR="${pkgdir}" install-binary-gui install-desktop } diff --git a/tageditor/git/PKGBUILD b/tageditor/git/PKGBUILD index a5f14163..fd7da16e 100644 --- a/tageditor/git/PKGBUILD +++ b/tageditor/git/PKGBUILD @@ -10,7 +10,7 @@ _reponame=tageditor _webviewprovider=qt5-webkit pkgname=tageditor-git pkgver=66.77a0bc2 -pkgrel=12 +pkgrel=1 arch=('i686' 'x86_64') pkgdesc="A tag editor with Qt GUI and command-line interface supporting MP4/M4A/AAC (iTunes), ID3, Vorbis, Opus and Matroska (git version)." license=('GPL') @@ -30,11 +30,11 @@ pkgver() { build() { cd "$srcdir/${PROJECT_DIR_NAME:-$_reponame}" - cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX="${pkgdir}/usr" + cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX="/usr" make } package() { cd "$srcdir/${PROJECT_DIR_NAME:-$_reponame}" - make install + make DESTDIR="${pkgdir}" install } diff --git a/tagparser/git/PKGBUILD b/tagparser/git/PKGBUILD index f9a21c35..03c82dab 100644 --- a/tagparser/git/PKGBUILD +++ b/tagparser/git/PKGBUILD @@ -7,7 +7,7 @@ _name=tagparser _reponame=tagparser pkgname=tagparser-git pkgver=59.8cc75e1 -pkgrel=3 +pkgrel=1 arch=('i686' 'x86_64') pkgdesc="C++ library for reading and writing MP4/M4A/AAC (iTunes), ID3, Vorbis, Opus and Matroska tags (git version)." license=('GPL') @@ -26,11 +26,11 @@ pkgver() { build() { cd "$srcdir/${PROJECT_DIR_NAME:-$_reponame}" - cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX="${pkgdir}/usr" + cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX="/usr" make } package() { cd "$srcdir/${PROJECT_DIR_NAME:-$_reponame}" - make install + make DESTDIR="${pkgdir}" install } diff --git a/videodownloader/git/PKGBUILD b/videodownloader/git/PKGBUILD index 88575e31..6320a82c 100644 --- a/videodownloader/git/PKGBUILD +++ b/videodownloader/git/PKGBUILD @@ -7,7 +7,7 @@ _name=videodownloader _reponame=videodownloader pkgname=videodownloader-git pkgver=27.8960d5b -pkgrel=6 +pkgrel=1 arch=('i686' 'x86_64') pkgdesc="A video downloader with Qt GUI (currently only YouTube and Vimeo are maintained, mingw-w64)." license=('GPL') @@ -27,11 +27,11 @@ pkgver() { build() { cd "$srcdir/${PROJECT_DIR_NAME:-$_reponame}" - cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX="${pkgdir}/usr" + cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX="/usr" make } package() { cd "$srcdir/${PROJECT_DIR_NAME:-$_reponame}" - make install + make DESTDIR="${pkgdir}" install }