comparison graphics/wayland-protocols/wayland-protocols.sh @ 1216:6710613b88b9

misc: remove build function
author David Demelier <markand@malikania.fr>
date Wed, 29 Sep 2021 13:49:32 +0200
parents ddab65a5b3f5
children 27d1a83dc8d6
comparison
equal deleted inserted replaced
1215:3214f7fed454 1216:6710613b88b9
20 PKGREVISION=1 20 PKGREVISION=1
21 PKGLICENSE="MIT" 21 PKGLICENSE="MIT"
22 PKGSUMMARY="protocols for wayland" 22 PKGSUMMARY="protocols for wayland"
23 PKGDOWNLOAD="https://wayland.freedesktop.org/releases/$PKGNAME-$PKGVERSION.tar.xz" 23 PKGDOWNLOAD="https://wayland.freedesktop.org/releases/$PKGNAME-$PKGVERSION.tar.xz"
24 24
25 build() 25 rm -rf $PKGNAME-$PKGVERSION
26 { 26 tar xvf $PKGNAME-$PKGVERSION.tar.xz
27 rm -rf $PKGNAME-$PKGVERSION 27 cd $PKGNAME-$PKGVERSION
28 tar xvf $PKGNAME-$PKGVERSION.tar.xz
29 cd $PKGNAME-$PKGVERSION
30 28
31 ./configure --prefix= 29 ./configure --prefix=
32 make 30 make
33 make install DESTDIR=$DESTDIR 31 make install DESTDIR=$DESTDIR
34 32
35 cd .. 33 cd ..
36 rm -rf $PKGNAME-$PKGVERSION 34 rm -rf $PKGNAME-$PKGVERSION
37 }