mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 02:22:13 +08:00
46 lines
1.2 KiB
Bash
46 lines
1.2 KiB
Bash
#
|
|
# KDE SC Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer (i686): Phil Miller <philm[at]chakra-project[dog]org>
|
|
# maintainer (x86_64): Manuel Tortosa <manutortosa[at]chakra-project[dot]org>
|
|
|
|
# include global config
|
|
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=('!splithdr' '!splitdbg')
|
|
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}
|
|
}
|
|
|