blob: 430c880ab890fbea55b27a01ffc486c4003535db (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
# Maintainer: Det <nimetonmaili g-mail>
# Based on [extra]'s xorgproto: https://projects.archlinux.org/svntogit/packages.git/tree/trunk?h=packages/xorgproto
_pkgname=xorgproto
pkgname=$_pkgname-git
pkgver=2018.1.2.r2585.g5c6e9a6
pkgrel=1
pkgdesc="Combined X.Org X11 Protocol headers - Git version"
arch=('any')
url="http://cgit.freedesktop.org/xorg/proto/$_pkgname/"
license=('custom')
makedepends=('git' 'xorg-util-macros') # 'xmlto' 'libxslt' 'linuxdoc-tools' 'docbook-sgml' 'fop')
provides=('xorgproto' 'bigreqsproto' 'compositeproto' 'damageproto' 'dmxproto' 'dri2proto' 'dri3proto' 'fixesproto' 'fontsproto' 'glproto' 'inputproto' 'kbproto' 'presentproto' 'printproto' 'randrproto' 'recordproto' 'renderproto' 'resourceproto' 'scrnsaverproto' 'videoproto' 'xcmiscproto' 'xextproto' 'xf86dgaproto' 'xf86driproto' 'xf86miscproto' 'xf86vidmodeproto' 'xineramaproto' 'xproto')
conflicts=(${provides[@]})
replaces=(${provides[@]/xorgproto})
source=("git://anongit.freedesktop.org/xorg/proto/$_pkgname")
md5sums=('SKIP')
pkgver() {
cd $_pkgname
echo $(git describe --long | cut -d "-" -f2-3 | tr - .).r$(git rev-list HEAD --count).$(git describe --long | cut -d "-" -f4)
}
build() {
cd $_pkgname
msg2 "Starting autogen.sh..."
./autogen.sh --prefix=/usr \
--without-xmlto \
--without-xsltproc \
--without-fop
msg2 "Starting make..."
make
}
package() {
cd $_pkgname
msg2 "Starting make install..."
make DESTDIR="$pkgdir" install
install -Dm644 COPYING "$pkgdir"/usr/share/licenses/$_pkgname/COPYING
# Cleanup
rm -f "$pkgdir"/usr/include/X11/extensions/{apple,windows}*
rm -f "$pkgdir"/usr/share/licenses/$pkgname/COPYING-{apple,windows}wmproto
rm -f "$pkgdir"/usr/share/pkgconfig/{apple,windows}wmproto.pc
}
|