termux-packages/x11-packages/adwaita-icon-theme/build.sh

24 lines
979 B
Bash
Raw Normal View History

2018-09-10 00:42:26 +02:00
TERMUX_PKG_HOMEPAGE=https://www.gnome.org
TERMUX_PKG_DESCRIPTION="GNOME standard icons"
TERMUX_PKG_LICENSE="LGPL-3.0"
2020-05-14 00:01:15 +02:00
TERMUX_PKG_MAINTAINER="Leonid Pliushch <leonid.pliushch@gmail.com>"
2020-09-23 21:59:03 +02:00
TERMUX_PKG_VERSION=3.38.0
2020-12-08 13:53:24 +01:00
TERMUX_PKG_REVISION=1
2019-12-22 00:26:46 +01:00
TERMUX_PKG_SRCURL=https://gitlab.gnome.org/GNOME/adwaita-icon-theme/-/archive/${TERMUX_PKG_VERSION}/adwaita-icon-theme-${TERMUX_PKG_VERSION}.tar.gz
2020-09-23 21:59:03 +02:00
TERMUX_PKG_SHA256=c871011ffc612292ae0398abc5b8836017cc736e1da6a4e2c3893160f92d0a88
2018-09-10 00:42:26 +02:00
TERMUX_PKG_PLATFORM_INDEPENDENT=true
TERMUX_PKG_DEPENDS="hicolor-icon-theme"
TERMUX_PKG_RM_AFTER_INSTALL="share/icons/Adwaita/icon-theme.cache"
2018-09-10 00:42:26 +02:00
termux_step_pre_configure() {
autoreconf -fvi
2018-09-10 00:42:26 +02:00
}
termux_step_post_make_install() {
# fix location of adwaita-icon-theme.pc
if [ -f "${TERMUX_PREFIX}/share/pkgconfig/adwaita-icon-theme.pc" ]; then
mkdir -p "${TERMUX_PREFIX}/lib/pkgconfig"
mv -f "${TERMUX_PREFIX}/share/pkgconfig/adwaita-icon-theme.pc" "${TERMUX_PREFIX}/lib/pkgconfig/adwaita-icon-theme.pc"
fi
2018-09-10 00:42:26 +02:00
}