mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 02:22:13 +08:00
29 lines
807 B
Bash
29 lines
807 B
Bash
pkgname=kaudiocreator
|
|
pkgver=1.3
|
|
pkgrel=4
|
|
pkgdesc="A program for ripping and encoding Audio-CDs, encoding files from disk"
|
|
arch=('x86_64')
|
|
url="http://www.kde-apps.org/content/show.php/KAudioCreator?content=107645"
|
|
license=('GPL')
|
|
depends=('taglib' 'libdiscid' 'libkcddb4' 'libkcompactdisc4')
|
|
makedepends=('cmake' 'automoc4')
|
|
categories=('multimedia')
|
|
install="$pkgname.install"
|
|
source=("https://dl.opendesktop.org/api/files/downloadfile/id/1466629608/s/7342e58cc1d1ea62a9e472da2eda3b34/t/1520761745/u/26190/107645-$pkgname-$pkgver.tar.bz2")
|
|
md5sums=('6adce848d3cdc9d80a52d35144890c86')
|
|
|
|
build() {
|
|
cd $pkgname-$pkgver
|
|
mkdir build
|
|
cd build
|
|
cmake .. \
|
|
-DCMAKE_BUILD_TYPE=Release \
|
|
-DCMAKE_INSTALL_PREFIX=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd $pkgname-$pkgver/build
|
|
make DESTDIR=$pkgdir install
|
|
}
|