mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 10:32:13 +08:00
48 lines
1.5 KiB
Bash
48 lines
1.5 KiB
Bash
#
|
|
# Apps Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# Maintainer: Adrián Chaves Fernández (Gallaecio) <adriyetichaves gmail.com>
|
|
|
|
pkgname=silicon-empire
|
|
_pkgname=silicon
|
|
_pkgname2=Silicon
|
|
pkgver=1.7.3
|
|
pkgrel=1
|
|
pkgdesc="Set of tools to manage and organize your optical discs like CDs, DVDs and Blu-rays."
|
|
arch=('i686' 'x86_64')
|
|
url="http://getsilicon.org/"
|
|
license=('GPL3')
|
|
depends=('fuseiso' 'phonon' 'taglib' 'qt')
|
|
conflicts=('silicon-empire-git')
|
|
categories=('multimedia')
|
|
screenshot="http://getsilicon.org/wp-content/uploads/big-screeshot.png"
|
|
source=(http://getsilicon.org/download/${_pkgname}_${pkgver}_src.tar.gz)
|
|
md5sums=('3608f1ef5698c286caa4184ba0089cfe')
|
|
|
|
build() {
|
|
cd $srcdir/$_pkgname2
|
|
|
|
sed -i '48d' Makefile
|
|
|
|
# Fix Makefile(qmake-qt4 -> qmake)
|
|
# sed -i 's/qmake-qt4/qmake/' Makefile
|
|
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd $srcdir/$_pkgname2/build-linux
|
|
|
|
install -Dm755 bin/$_pkgname $pkgdir/usr/bin/$_pkgname
|
|
cp -R lib/ share/ $pkgdir/usr
|
|
|
|
# Desktop icon
|
|
cd $srcdir/$_pkgname2/src/Files
|
|
install -Dm644 $_pkgname.desktop $pkgdir/usr/share/applications/$_pkgname.desktop
|
|
install -Dm644 icons/silicon_22.png $pkgdir/usr/share/icons/hicolor/22x22/apps/$_pkgname.png
|
|
install -Dm644 icons/silicon_32.png $pkgdir/usr/share/icons/hicolor/32x32/apps/$_pkgname.png
|
|
install -Dm644 icons/silicon_48.png $pkgdir/usr/share/icons/hicolor/48x48/apps/$_pkgname.png
|
|
install -Dm644 icons/silicon_64.png $pkgdir/usr/share/icons/hicolor/64x64/apps/$_pkgname.png
|
|
install -Dm644 icons/silicon_128.png $pkgdir/usr/share/icons/hicolor/128x128/apps/$_pkgname.png
|
|
}
|