mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 02:22:13 +08:00
a000c3a203
kshutdown 3.0 thanks to FranzMari for preparing PKGBUILD's
31 lines
923 B
Bash
31 lines
923 B
Bash
# Apps Packages for Chakra, part of chakra-project.org
|
|
# Maintainer: Adrián Chaves Fernández (Gallaecio) <adriyetichaves gmail.com>
|
|
# Contributions from: https://aur.archlinux.org/packages/silicon-empire/
|
|
|
|
pkgname=silicon-empire
|
|
_pkgname=silicon
|
|
pkgver=2.0.0
|
|
pkgrel=1
|
|
pkgdesc="Set of tools to manage and organize your optical discs like CDs, DVDs and Blu-rays."
|
|
arch=('x86_64')
|
|
url="http://getsilicon.org/"
|
|
license=('GPL3')
|
|
depends=('fuseiso' 'phonon' 'taglib' 'qt' 'cdrkit')
|
|
conflicts=('silicon-empire-git')
|
|
categories=('multimedia')
|
|
screenshot="http://getsilicon.org/wp-content/uploads/big-screeshot.png"
|
|
source=("http://getsilicon.org/download/${_pkgname}_${pkgver}_source.tar.gz")
|
|
md5sums=('f68fde5d5fd72c8e271b885e64ce7a5a')
|
|
|
|
build() {
|
|
cd "$srcdir/$pkgname/src"
|
|
cmake -DCMAKE_BUILD_TYPE=release -DCMAKE_INSTALL_PREFIX=/usr .
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "$srcdir/$pkgname/src"
|
|
make DESTDIR=${pkgdir} install
|
|
}
|
|
|