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
46 lines
1.1 KiB
Bash
46 lines
1.1 KiB
Bash
|
|
|
|
|
|
# Maintainer (i686): Phil Miller <philm@chakra-project[dog]org>
|
|
# Maintainer (x86_64): Manuel Tortosa <manutortosa@chakra-project@org>
|
|
|
|
# Include global configuration
|
|
source ../_buildscripts/${current_repo}-${_arch}-cfg.conf
|
|
|
|
|
|
# original name (used for the source and pkgnames)
|
|
_origname=x-kit
|
|
|
|
|
|
|
|
|
|
# package info
|
|
|
|
pkgname=xkit
|
|
pkgver=0.4.2
|
|
pkgrel=8
|
|
pkgdesc="A kit to manipulate, parse and validate the X.org configuration file (/etc/X11/xorg.conf)"
|
|
arch=('i686' 'x86_64')
|
|
url="https://launchpad.net/x-kit"
|
|
license=('GPL')
|
|
groups=('kde' 'kde-complete' 'kde-uninstall' 'kde-tools' 'kde-support')
|
|
depends=('python2' 'xorg-server')
|
|
options=('!header' '!debug')
|
|
source=(http://launchpad.net/xorgparser/trunk/0.4.2/+download/$_origname-$pkgver.tar.gz
|
|
https://launchpad.net/ubuntu/jaunty/+source/dontzap/0.1.2/+files/dontzap_0.1.2.tar.gz)
|
|
md5sums=('024176dda624f011daba53c2796b2845' # x-kit-0.4.2.tar.gz
|
|
'231847eedf4e68ae36cddc0ec745216a') # dontzap_0.1.2.tar.gz
|
|
|
|
|
|
|
|
build() {
|
|
# install xkit lib
|
|
cd "$srcdir/$_origname-$pkgver"
|
|
python2 setup.py install --root=${pkgdir}
|
|
|
|
# install dontzap
|
|
cd "$srcdir/main"
|
|
python2 setup.py install --root=${pkgdir}
|
|
}
|
|
|