mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 18:42:12 +08:00
32 lines
1.1 KiB
Bash
32 lines
1.1 KiB
Bash
|
#
|
||
|
# Apps Packages for Chakra, part of chakra-project.org
|
||
|
#
|
||
|
# maintainer (i686): Phil Miller <philm[at]chakra-project[dog]org>
|
||
|
# maintainer (x86_64): Manuel Tortosa <manutortosa[at]chakra-project[dot]org>
|
||
|
# contributor Fabien Valthier <hcoohb[at]gmail[dog]com>
|
||
|
|
||
|
pkgname=mp3diags
|
||
|
pkgver=1.0.07.052
|
||
|
pkgrel=1
|
||
|
pkgdesc="GUI-based application that allows end-users to identify issues with their MP3 files, fix some of the issues and make other changes."
|
||
|
url="http://mp3diags.sourceforge.net/"
|
||
|
license=('GPL')
|
||
|
arch=('i686' 'x86_64')
|
||
|
depends=('qt' 'phonon' 'boost')
|
||
|
makedepends=('make' 'gcc' 'boost')
|
||
|
optdepends=('mp3gain: MP3 normalization support')
|
||
|
install=mp3diags.install
|
||
|
source=(http://downloads.sourceforge.net/project/${pkgname}/${pkgname}-src/MP3Diags-${pkgver}.tar.gz)
|
||
|
md5sums=('6fdf986548af3439c5b39e523868d989')
|
||
|
|
||
|
build() {
|
||
|
cd ${srcdir}/MP3Diags-$pkgver
|
||
|
install -d ${pkgdir}/usr/share/{applications,pixmaps}
|
||
|
qmake
|
||
|
make
|
||
|
strip bin/MP3Diags
|
||
|
install -D bin/MP3Diags ${pkgdir}/usr/bin/MP3Diags
|
||
|
install -D desktop/MP3Diags.desktop ${pkgdir}/usr/share/applications
|
||
|
install -D desktop/MP3Diags48.png ${pkgdir}/usr/share/pixmaps/MP3Diags.png
|
||
|
}
|