mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-25 02:52:13 +08:00
32 lines
881 B
Bash
32 lines
881 B
Bash
# Maintainer: Francesco Marinucci <franzmari[at]chakra-project[dot]it>
|
|
|
|
pkgname=kid3
|
|
pkgver=3.1
|
|
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")
|
|
sha256sums=('08661266250670620a51e3d55b97b00fe545625c74f7cf0834b5308572ffcc51')
|
|
|
|
build() {
|
|
mkdir -p build
|
|
cd build
|
|
cmake ../${pkgname}-${pkgver} \
|
|
-DWITH_APPS=KDE \
|
|
-DCMAKE_INSTALL_PREFIX=/usr \
|
|
-DCMAKE_BUILD_TYPE=Release
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd build
|
|
make DESTDIR="${pkgdir}" install
|
|
}
|