comparison themes/hicolor-icon-theme/hicolor-icon-theme.sh @ 1216:6710613b88b9

misc: remove build function
author David Demelier <markand@malikania.fr>
date Wed, 29 Sep 2021 13:49:32 +0200
parents 297b5eef115e
children 57dc83a39b13
comparison
equal deleted inserted replaced
1215:3214f7fed454 1216:6710613b88b9
20 PKGREVISION=1 20 PKGREVISION=1
21 PKGLICENSE="GPLv20" 21 PKGLICENSE="GPLv20"
22 PKGSUMMARY="fallback theme for icon theme implementation" 22 PKGSUMMARY="fallback theme for icon theme implementation"
23 PKGDOWNLOAD="http://icon-theme.freedesktop.org/releases/$PKGNAME-$PKGVERSION.tar.xz" 23 PKGDOWNLOAD="http://icon-theme.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 }