2018-09-10 00:42:26 +02:00
|
|
|
TERMUX_PKG_HOMEPAGE=https://www.gnome.org
|
|
|
|
TERMUX_PKG_DESCRIPTION="Freedesktop.org Hicolor icon theme"
|
2019-01-21 17:50:21 +01:00
|
|
|
TERMUX_PKG_LICENSE="LGPL-3.0"
|
2019-05-17 00:18:48 +02:00
|
|
|
TERMUX_PKG_MAINTAINER="Leonid Plyushch <leonid.plyushch@gmail.com>"
|
2019-05-19 00:44:47 +02:00
|
|
|
TERMUX_PKG_VERSION=3.32.0
|
2019-05-25 16:12:12 +02:00
|
|
|
TERMUX_PKG_REVISION=1
|
2018-09-10 00:42:26 +02:00
|
|
|
TERMUX_PKG_SRCURL=https://github.com/GNOME/adwaita-icon-theme/archive/${TERMUX_PKG_VERSION}.tar.gz
|
2019-05-19 00:44:47 +02:00
|
|
|
TERMUX_PKG_SHA256=1b514674692030feb57d078b8f20011bb0f79be28419bb2fb494d81ef26e5638
|
2018-09-10 00:42:26 +02:00
|
|
|
TERMUX_PKG_PLATFORM_INDEPENDENT=true
|
|
|
|
TERMUX_PKG_DEPENDS="hicolor-icon-theme"
|
2018-10-06 16:00:04 +02:00
|
|
|
TERMUX_PKG_RM_AFTER_INSTALL="share/icons/Adwaita/icon-theme.cache"
|
2018-09-10 00:42:26 +02:00
|
|
|
|
|
|
|
termux_step_pre_configure() {
|
2019-01-21 17:50:21 +01:00
|
|
|
autoreconf -fvi
|
2018-09-10 00:42:26 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
termux_step_post_make_install() {
|
2019-01-21 17:50:21 +01:00
|
|
|
# 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
|
|
|
}
|