comparison x11/xcb-proto/xcb-proto.sh @ 1335:7e62919ec1c2

x11: upgrade whole distribution
author David Demelier <markand@malikania.fr>
date Fri, 03 Dec 2021 22:19:37 +0100
parents 9867e578b1a9
children
comparison
equal deleted inserted replaced
1334:7d9327688dfa 1335:7e62919ec1c2
14 # ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 14 # ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
15 # OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 15 # OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
16 # 16 #
17 17
18 PKGNAME=xcb-proto 18 PKGNAME=xcb-proto
19 PKGVERSION=1.13 19 PKGVERSION=1.14
20 PKGREVISION=1 20 PKGREVISION=1
21 PKGLICENSE="CUSTOM" 21 PKGLICENSE="Custom"
22 PKGSUMMARY="XML-XCB protocol descriptions" 22 PKGSUMMARY="XML-XCB protocol descriptions"
23 PKGWWW="https://xcb.freedesktop.org"
23 PKGDOWNLOAD="https://xcb.freedesktop.org/dist/$PKGNAME-$PKGVERSION.tar.gz" 24 PKGDOWNLOAD="https://xcb.freedesktop.org/dist/$PKGNAME-$PKGVERSION.tar.gz"
24 PKGDEPENDS="python" 25 PKGDEPENDS="python"
25 26
26 build() 27 build()
27 { 28 {
28 rm -rf $PKGNAME-$PKGVERSION 29 rm -rf $PKGNAME-$PKGVERSION
29 tar xvf $PKGNAME-$PKGVERSION.tar.gz 30 tar -xvf $PKGNAME-$PKGVERSION.tar.gz
30 cd $PKGNAME-$PKGVERSION 31 cd $PKGNAME-$PKGVERSION
31 32
33 patch -p1 < ../patch-python.patch
32 ./configure --prefix= 34 ./configure --prefix=
33 make 35 make
34 make install DESTDIR=$DESTDIR 36 make install DESTDIR=$DESTDIR
35 37
36 cd .. 38 cd ..