core/xcb-proto/PKGBUILD

26 lines
595 B
Bash
Raw Normal View History

2013-12-18 03:54:01 +08:00
# Part of the X.org group
2012-09-25 22:51:48 +08:00
# Maintainer: Neophytos Kolokotronis <tetris4@gmail.com>
2010-03-14 23:48:48 +08:00
pkgname=xcb-proto
2014-06-29 02:16:50 +08:00
pkgver=1.10
2014-06-29 22:18:01 +08:00
pkgrel=1
2010-03-14 23:48:48 +08:00
pkgdesc="XML-XCB protocol descriptions"
2014-06-29 02:16:50 +08:00
arch=(any)
2010-03-14 23:48:48 +08:00
url="http://xcb.freedesktop.org/"
license=('custom')
2014-06-29 02:16:50 +08:00
makedepends=('python' 'libxml2')
source=($url/dist/$pkgname-$pkgver.tar.bz2)
sha256sums=('7ef40ddd855b750bc597d2a435da21e55e502a0fefa85b274f2c922800baaf05')
2010-03-14 23:48:48 +08:00
build() {
2014-06-29 02:16:50 +08:00
cd $pkgname-$pkgver
2012-09-25 22:51:48 +08:00
./configure --prefix=/usr
make
2012-01-13 03:48:10 +08:00
}
package() {
2014-06-29 02:16:50 +08:00
cd $pkgname-$pkgver
make DESTDIR="$pkgdir" install
2014-06-29 22:18:01 +08:00
install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING"
2010-03-14 23:48:48 +08:00
}