mirror of
https://github.com/yann64/haikuports.git
synced 2026-03-19 01:46:00 +01:00
57 lines
1.0 KiB
Bash
57 lines
1.0 KiB
Bash
SUMMARY="GNOME default icon theme"
|
|
DESCRIPTION="This package contains the Adwaita icon theme used by the GNOME desktop."
|
|
HOMEPAGE="https://gitlab.gnome.org/GNOME/adwaita-icon-theme/"
|
|
COPYRIGHT="Ulisse Perusin
|
|
Riccardo Buzzotta
|
|
Josef Vybíral
|
|
Hylke Bons
|
|
Ricardo González
|
|
Lapo Calamandrei
|
|
Rodney Dawes
|
|
Luca Ferretti
|
|
Tuomas Kuosmanen
|
|
Andreas Nilsson
|
|
Jakub Steiner
|
|
Sam Hewitt
|
|
"
|
|
LICENSE="GNU LGPL v3"
|
|
REVISION="1"
|
|
SOURCE_URI="https://gitlab.gnome.org/GNOME/adwaita-icon-theme/-/archive/$portVersion/adwaita-icon-theme-$portVersion.tar.bz2"
|
|
CHECKSUM_SHA256="2153e51bd8bce721df377ee2c07dea21f5d04849038576c4b624c79353160b1f"
|
|
SOURCE_DIR="adwaita-icon-theme-$portVersion"
|
|
|
|
ARCHITECTURES="any"
|
|
|
|
PROVIDES="
|
|
adwaita_icon_theme = $portVersion
|
|
"
|
|
REQUIRES="
|
|
haiku
|
|
adwaita_icon_theme_legacy
|
|
"
|
|
|
|
BUILD_REQUIRES="
|
|
haiku_devel
|
|
"
|
|
BUILD_PREREQUIRES="
|
|
cmd:gtk_update_icon_cache
|
|
cmd:meson
|
|
cmd:ninja
|
|
cmd:pkg_config
|
|
"
|
|
|
|
BUILD()
|
|
{
|
|
meson Build \
|
|
--buildtype=release \
|
|
--prefix=$prefix \
|
|
--datadir=$dataDir
|
|
|
|
ninja -C Build
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
ninja install -C Build
|
|
}
|