PKGBUILDs/tageditor/default/PKGBUILD

28 lines
1.0 KiB
Bash
Raw Normal View History

2015-08-04 20:04:32 +02:00
# Maintainer: Martchus <martchus@gmx.net>
2015-08-11 22:21:14 +02:00
# 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)
2015-12-02 02:20:30 +01:00
_reponame=tageditor
pkgname=tageditor
2015-12-06 19:17:57 +01:00
pkgver=1.3.0
2015-10-16 22:52:00 +02:00
pkgrel=1
arch=('i686' 'x86_64')
2015-09-01 21:26:32 +02:00
pkgdesc="A tag editor with Qt GUI and command-line interface supporting MP4 (iTunes), ID3, Vorbis and Matroska."
license=('GPL')
2015-08-31 01:53:31 +02:00
depends=('qt5-script' $_webviewprovider 'qtutilities' 'tagparser' 'desktop-file-utils' 'xdg-utils')
2015-12-06 19:17:57 +01:00
makedepends=('cmake' 'qt5-tools')
install=${pkgname}.install
2015-12-02 02:20:30 +01:00
url="https://github.com/Martchus/${_reponame}"
source=("tageditor-${pkgver}.tar.gz::https://github.com/Martchus/${_reponame}/archive/v${pkgver}.tar.gz")
sha256sums=('d089b9e66616c39147b639639152c5848f59dafa2c0a9a77d0137fbed13a2af9')
build() {
cd "$srcdir/${PROJECT_DIR_NAME:-$_reponame-$pkgver}"
2015-12-06 19:17:57 +01:00
cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX="${pkgdir}/usr"
make
}
package() {
cd "$srcdir/${PROJECT_DIR_NAME:-$_reponame-$pkgver}"
make install
}