mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 02:22:13 +08:00
961cfc61e8
Conflicts: apper/PKGBUILD avogadro/PKGBUILD calligra-l10n/PKGBUILD calligra/PKGBUILD digikam/PKGBUILD freerdp/PKGBUILD kapudan/PKGBUILD kde-baseapps-konsole/PKGBUILD kde-gtk-config/PKGBUILD kde-l10n/PKGBUILD kde-plasma-themes/PKGBUILD kde-runtime/PKGBUILD kde-sc.md5 kde-workspace/PKGBUILD kdeedu-kalzium/PKGBUILD kdegames-kigo/PKGBUILD kdegames-libkdegames/PKGBUILD kdemultimedia-thumbnailers/PKGBUILD kdenetwork-kopete/PKGBUILD kdenetwork-kopete/kdenetwork.install kdepimlibs/PKGBUILD kdeplasma-applets-networkmanagement/PKGBUILD kdeplasma-applets-plasma-nm/PKGBUILD kdeutils-ark/PKGBUILD kdewebdev/PKGBUILD kscreen/PKGBUILD libkscreen/PKGBUILD libxklavier/PKGBUILD nepomuk-core/PKGBUILD partitionmanager/PKGBUILD support-pkg-meanwhile/PKGBUILD system-config-printer/PKGBUILD tools-pkg-akabeiclient/PKGBUILD tools-pkg-akabeicore/PKGBUILD tribe-partitionmanager/PKGBUILD tribe/PKGBUILD xscreensaver/PKGBUILD
34 lines
857 B
Bash
34 lines
857 B
Bash
# Chakra Packages for Chakra, part of chakra-project.org
|
|
|
|
# Maintainer: Manuel Tortosa <manutortosa@chakra-project@org>
|
|
|
|
pkgname=rcconf-settings
|
|
pkgver=0.7
|
|
pkgrel=1
|
|
pkgdesc='A KCM for manage the Rc.conf file for Chakra GNU/Linux'
|
|
arch=('x86_64')
|
|
license=('GPL')
|
|
url='http://gitorious.org/chakra/rcconf-settings'
|
|
options=('sign')
|
|
depends=('qt' 'kde-workspace')
|
|
makedepends=('automoc4')
|
|
categories=('system')
|
|
install=('install')
|
|
source=("http://chakra-linux.org/sources/$pkgname/$pkgname-$pkgver.tar.gz")
|
|
md5sums=('bf1a3248e3dc03fdf228430eda986316')
|
|
|
|
build() {
|
|
cd "${srcdir}/$pkgname-$pkgver"
|
|
|
|
cmake . -DCMAKE_INSTALL_PREFIX=/usr \
|
|
-DCMAKE_BUILD_TYPE=Release \
|
|
-DCMAKE_SKIP_RPATH=ON \
|
|
-DCMAKE_{SHARED,MODULE,EXE}_LINKER_FLAGS='-Wl,--no-undefined -Wl,--as-needed'
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/$pkgname-$pkgver"
|
|
make DESTDIR=${pkgdir} install
|
|
}
|