annotate x11/xcb-proto/xcb-proto.sh @ 549:bad483aace64

vanilla: use prefix= instead
author David Demelier <markand@malikania.fr>
date Sun, 23 Jun 2019 15:13:10 +0200
parents cacbd9d3d3a8
children 25cecc6dca48
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
201
8786a3791cc9 x11/xcb-proto: initial import, closes #1347
David Demelier <markand@malikania.fr>
parents:
diff changeset
1 #!/bin/sh
8786a3791cc9 x11/xcb-proto: initial import, closes #1347
David Demelier <markand@malikania.fr>
parents:
diff changeset
2 #
8786a3791cc9 x11/xcb-proto: initial import, closes #1347
David Demelier <markand@malikania.fr>
parents:
diff changeset
3 # Copyright (c) 2019 David Demelier <markand@malikania.fr>
8786a3791cc9 x11/xcb-proto: initial import, closes #1347
David Demelier <markand@malikania.fr>
parents:
diff changeset
4 #
8786a3791cc9 x11/xcb-proto: initial import, closes #1347
David Demelier <markand@malikania.fr>
parents:
diff changeset
5 # Permission to use, copy, modify, and/or distribute this software for any
8786a3791cc9 x11/xcb-proto: initial import, closes #1347
David Demelier <markand@malikania.fr>
parents:
diff changeset
6 # purpose with or without fee is hereby granted, provided that the above
8786a3791cc9 x11/xcb-proto: initial import, closes #1347
David Demelier <markand@malikania.fr>
parents:
diff changeset
7 # copyright notice and this permission notice appear in all copies.
8786a3791cc9 x11/xcb-proto: initial import, closes #1347
David Demelier <markand@malikania.fr>
parents:
diff changeset
8 #
8786a3791cc9 x11/xcb-proto: initial import, closes #1347
David Demelier <markand@malikania.fr>
parents:
diff changeset
9 # THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
8786a3791cc9 x11/xcb-proto: initial import, closes #1347
David Demelier <markand@malikania.fr>
parents:
diff changeset
10 # WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
8786a3791cc9 x11/xcb-proto: initial import, closes #1347
David Demelier <markand@malikania.fr>
parents:
diff changeset
11 # MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
8786a3791cc9 x11/xcb-proto: initial import, closes #1347
David Demelier <markand@malikania.fr>
parents:
diff changeset
12 # ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
8786a3791cc9 x11/xcb-proto: initial import, closes #1347
David Demelier <markand@malikania.fr>
parents:
diff changeset
13 # WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
8786a3791cc9 x11/xcb-proto: initial import, closes #1347
David Demelier <markand@malikania.fr>
parents:
diff changeset
14 # ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
8786a3791cc9 x11/xcb-proto: initial import, closes #1347
David Demelier <markand@malikania.fr>
parents:
diff changeset
15 # OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
8786a3791cc9 x11/xcb-proto: initial import, closes #1347
David Demelier <markand@malikania.fr>
parents:
diff changeset
16 #
8786a3791cc9 x11/xcb-proto: initial import, closes #1347
David Demelier <markand@malikania.fr>
parents:
diff changeset
17
8786a3791cc9 x11/xcb-proto: initial import, closes #1347
David Demelier <markand@malikania.fr>
parents:
diff changeset
18 PKGNAME=xcb-proto
8786a3791cc9 x11/xcb-proto: initial import, closes #1347
David Demelier <markand@malikania.fr>
parents:
diff changeset
19 PKGVERSION=1.13
8786a3791cc9 x11/xcb-proto: initial import, closes #1347
David Demelier <markand@malikania.fr>
parents:
diff changeset
20 PKGREVISION=1
8786a3791cc9 x11/xcb-proto: initial import, closes #1347
David Demelier <markand@malikania.fr>
parents:
diff changeset
21 PKGLICENSE="CUSTOM"
8786a3791cc9 x11/xcb-proto: initial import, closes #1347
David Demelier <markand@malikania.fr>
parents:
diff changeset
22 PKGSUMMARY="XML-XCB protocol descriptions"
8786a3791cc9 x11/xcb-proto: initial import, closes #1347
David Demelier <markand@malikania.fr>
parents:
diff changeset
23 PKGDOWNLOAD="https://xcb.freedesktop.org/dist/$PKGNAME-$PKGVERSION.tar.gz"
8786a3791cc9 x11/xcb-proto: initial import, closes #1347
David Demelier <markand@malikania.fr>
parents:
diff changeset
24 PKGDEPENDS="python/python"
8786a3791cc9 x11/xcb-proto: initial import, closes #1347
David Demelier <markand@malikania.fr>
parents:
diff changeset
25
8786a3791cc9 x11/xcb-proto: initial import, closes #1347
David Demelier <markand@malikania.fr>
parents:
diff changeset
26 build()
8786a3791cc9 x11/xcb-proto: initial import, closes #1347
David Demelier <markand@malikania.fr>
parents:
diff changeset
27 {
8786a3791cc9 x11/xcb-proto: initial import, closes #1347
David Demelier <markand@malikania.fr>
parents:
diff changeset
28 rm -rf $PKGNAME-$PKGVERSION
8786a3791cc9 x11/xcb-proto: initial import, closes #1347
David Demelier <markand@malikania.fr>
parents:
diff changeset
29 tar xvaf $PKGNAME-$PKGVERSION.tar.gz
8786a3791cc9 x11/xcb-proto: initial import, closes #1347
David Demelier <markand@malikania.fr>
parents:
diff changeset
30 pushd $PKGNAME-$PKGVERSION
8786a3791cc9 x11/xcb-proto: initial import, closes #1347
David Demelier <markand@malikania.fr>
parents:
diff changeset
31
549
bad483aace64 vanilla: use prefix= instead
David Demelier <markand@malikania.fr>
parents: 541
diff changeset
32 ./configure --prefix=
201
8786a3791cc9 x11/xcb-proto: initial import, closes #1347
David Demelier <markand@malikania.fr>
parents:
diff changeset
33 make
8786a3791cc9 x11/xcb-proto: initial import, closes #1347
David Demelier <markand@malikania.fr>
parents:
diff changeset
34 make install DESTDIR=$DESTDIR
8786a3791cc9 x11/xcb-proto: initial import, closes #1347
David Demelier <markand@malikania.fr>
parents:
diff changeset
35
8786a3791cc9 x11/xcb-proto: initial import, closes #1347
David Demelier <markand@malikania.fr>
parents:
diff changeset
36 popd
8786a3791cc9 x11/xcb-proto: initial import, closes #1347
David Demelier <markand@malikania.fr>
parents:
diff changeset
37 rm -rf $PKGNAME-$PKGVERSION
8786a3791cc9 x11/xcb-proto: initial import, closes #1347
David Demelier <markand@malikania.fr>
parents:
diff changeset
38 }