2010-05-21 07:48:47 +08:00
|
|
|
|
2013-12-18 02:36:04 +08:00
|
|
|
|
|
|
|
|
2013-12-18 02:41:12 +08:00
|
|
|
# Maintainer (i686): Phil Miller <philm@chakra-project[dog]org>
|
|
|
|
# Maintainer (x86_64): Manuel Tortosa <manutortosa@chakra-project@org>
|
2010-05-21 07:48:47 +08:00
|
|
|
|
2013-12-18 02:36:04 +08:00
|
|
|
# Include global configuration
|
2010-05-21 07:48:47 +08:00
|
|
|
source ../_buildscripts/${current_repo}-${_arch}-cfg.conf
|
|
|
|
|
|
|
|
|
|
|
|
# original name (used for the source and pkgnames)
|
|
|
|
_origname=x-kit
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-12-18 02:36:04 +08:00
|
|
|
|
2010-05-21 07:48:47 +08:00
|
|
|
# package info
|
2013-12-18 02:36:04 +08:00
|
|
|
|
2010-05-21 07:48:47 +08:00
|
|
|
pkgname=xkit
|
|
|
|
pkgver=0.4.2
|
2010-12-19 11:20:27 +08:00
|
|
|
pkgrel=8
|
2010-05-21 07:48:47 +08:00
|
|
|
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')
|
2010-06-07 03:00:44 +08:00
|
|
|
groups=('kde' 'kde-complete' 'kde-uninstall' 'kde-tools' 'kde-support')
|
2010-12-19 11:20:27 +08:00
|
|
|
depends=('python2' 'xorg-server')
|
2013-07-24 08:15:53 +08:00
|
|
|
options=('!header' '!debug')
|
2010-05-21 07:48:47 +08:00
|
|
|
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"
|
2013-08-05 13:18:41 +08:00
|
|
|
python2 setup.py install --root=${pkgdir}
|
2010-05-21 07:48:47 +08:00
|
|
|
|
|
|
|
# install dontzap
|
|
|
|
cd "$srcdir/main"
|
2013-08-05 13:18:41 +08:00
|
|
|
python2 setup.py install --root=${pkgdir}
|
2010-05-21 07:48:47 +08:00
|
|
|
}
|
|
|
|
|