comparison themes/hicolor-icon-theme/hicolor-icon-theme.sh @ 1222:325631424c65

misc: bring back build function
author David Demelier <markand@malikania.fr>
date Wed, 27 Oct 2021 11:32:16 +0200
parents a47aaf9743a0
children 9867e578b1a9
comparison
equal deleted inserted replaced
1221:a47aaf9743a0 1222:325631424c65
20 PKGREVISION=1 20 PKGREVISION=1
21 PKGLICENSE="GPL-2.0-only" 21 PKGLICENSE="GPL-2.0-only"
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 rm -rf $PKGNAME-$PKGVERSION 25 build()
26 tar xvf $PKGNAME-$PKGVERSION.tar.xz 26 {
27 cd $PKGNAME-$PKGVERSION 27 rm -rf $PKGNAME-$PKGVERSION
28 tar xvf $PKGNAME-$PKGVERSION.tar.xz
29 cd $PKGNAME-$PKGVERSION
28 30
29 ./configure --prefix=/usr 31 ./configure --prefix=
30 make 32 make
31 make install DESTDIR=$DESTDIR 33 make install DESTDIR=$DESTDIR
32 34
33 cd .. 35 cd ..
34 rm -rf $PKGNAME-$PKGVERSION 36 rm -rf $PKGNAME-$PKGVERSION
37 }