mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-04-19 05:36:38 +02:00
30 lines
953 B
Text
30 lines
953 B
Text
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
|
pkgname=icon-naming-utils
|
|
pkgver=0.8.90
|
|
pkgrel=4
|
|
pkgdesc="Maps the new names of icons for Tango to the legacy names used by the GNOME and KDE desktops."
|
|
url="http://tango.freedesktop.org/"
|
|
arch="noarch"
|
|
options="!check" # No test suite.
|
|
license="GPL-2.0-or-later"
|
|
depends="perl-xml-simple"
|
|
source="http://tango.freedesktop.org/releases/icon-naming-utils-$pkgver.tar.bz2"
|
|
|
|
build() {
|
|
./configure \
|
|
--build=$CBUILD \
|
|
--host=$CHOST \
|
|
--prefix=/usr \
|
|
--sysconfdir=/etc \
|
|
--libexecdir=/usr/lib/icon-naming-utils \
|
|
--localstatedir=/var
|
|
make
|
|
}
|
|
|
|
package() {
|
|
make DESTDIR="$pkgdir" install
|
|
mv "$pkgdir"/usr/share/pkgconfig "$pkgdir"/usr/lib/pkgconfig
|
|
chmod +x "$pkgdir"/usr/lib/icon-naming-utils/icon-name-mapping
|
|
}
|
|
|
|
sha512sums="7b2e3aa4c7a4857d3c190fb12d69d665bf63596a84735adddf7e67bc5e6b493eccd0b914bc32776934f04720c7071d6de35d55452ffd4966d7dbd8360907f727 icon-naming-utils-0.8.90.tar.bz2"
|