mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 02:22:13 +08:00
33 lines
838 B
Bash
33 lines
838 B
Bash
# Maintainer: abveritas@chakra-project.org
|
|
|
|
pkgname=kid3
|
|
pkgver=3.0
|
|
pkgrel=1
|
|
pkgdesc="An MP3, Ogg/Vorbis and FLAC tag editor for KDE"
|
|
arch=('x86_64')
|
|
url="http://kid3.sourceforge.net/"
|
|
license=('GPL')
|
|
depends=('id3lib' 'kdelibs' 'libmp4v2' 'chromaprint')
|
|
makedepends=('automoc4' 'cmake' 'taglib' 'docbook-xsl')
|
|
categories=('multimedia')
|
|
screenshot=('http://pkgs.org/images/linux-software/kid3/kid3-screenshot.png')
|
|
install=${pkgname}.install
|
|
source=("http://sourceforge.net/projects/$pkgname/files/$pkgname/$pkgver/$pkgname-$pkgver.tar.gz")
|
|
md5sums=('9efc2d14ea6217d7e543b1fe79c13815')
|
|
|
|
build() {
|
|
cd ${srcdir}
|
|
mkdir build
|
|
cd build
|
|
cmake ../${pkgname}-${pkgver} \
|
|
-DWITH_APPS=KDE \
|
|
-DCMAKE_INSTALL_PREFIX=/usr \
|
|
-DCMAKE_BUILD_TYPE=Release
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd ${srcdir}/build
|
|
make DESTDIR=${pkgdir} install
|
|
}
|