wok-next annotate elementary-icon-theme/receipt @ rev 21303

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