wok-next view elementary-icon-theme/receipt @ rev 21432

updated rawstudio (1.2 -> 2.0)
author Hans-G?nter Theisgen
date Tue May 05 09:38:29 2020 +0100 (2020-05-05)
parents 15f1e7e9a1c9
children 8db3662c6d93
line source
1 # SliTaz package receipt v2.
3 PACKAGE="elementary-icon-theme"
4 VERSION="4.3.1"
5 CATEGORY="customization"
6 SHORT_DESC="Smooth modern theme designed to be intuitive"
7 MAINTAINER="al.bobylev@gmail.com"
8 LICENSE="GPL3"
9 WEB_SITE="https://github.com/elementary/icons"
10 HOST_ARCH="any"
12 TARBALL="$PACKAGE-$VERSION.tar.gz"
13 WGET_URL="$WEB_SITE/archive/$VERSION.tar.gz"
15 BUILD_DEPENDS="cmake"
17 compile_rules() {
18 mkdir build
19 cd build
21 cmake \
22 -DCMAKE_INSTALL_PREFIX=/usr \
23 .. &&
24 make &&
25 make install || return 1
27 cd ..
28 cook_pick_docs AUTHORS *.md CONTRIBUTORS COPYING *.gpl pre-commit
30 fix symlinks # for cursors
31 rm $install/.VolumeIcon.icns $install/.VolumeIcon.png
32 }