24 lines
663 B
Bash
24 lines
663 B
Bash
# Maintainer: Jesus E. <heckyel@riseup.net>
|
|
|
|
pkgname=hicolor-icon-theme
|
|
pkgver=0.17
|
|
pkgrel=1
|
|
pkgdesc="Freedesktop.org Hicolor icon theme"
|
|
arch=('any')
|
|
url="https://www.freedesktop.org/wiki/Software/icon-theme/"
|
|
license=('GPL-2')
|
|
source=("https://icon-theme.freedesktop.org/releases/${pkgname}-${pkgver}.tar.xz")
|
|
sha512sums=('eca8655930aa7e234f42630041c0053fde067b970fad1f81c55fcd4c5046c03edfdf2ede72a3e78fba2908e7da53e9463d3c5ae12ab9f5ef261e29a49f9c7a8d')
|
|
|
|
build() {
|
|
cd $pkgname-$pkgver
|
|
./configure --prefix=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd $pkgname-$pkgver
|
|
make DESTDIR=$pkgdir install
|
|
install -Dm644 COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING
|
|
}
|