mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-02-12 17:34:38 +08:00
38 lines
1.0 KiB
Bash
38 lines
1.0 KiB
Bash
#
|
|
# Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer (i686): Phil Miller <philm[at]chakra-project[dog]org>
|
|
# maintainer (x86_64): Manuel Tortosa <manutortosa[at]chakra-project[dot]org>
|
|
|
|
pkgname=oxygen-gtk-icons
|
|
pkgver=2.5.0
|
|
pkgrel=2
|
|
|
|
pkgdesc="The Oxygen icon set for GTK+."
|
|
arch=('i686' 'x86_64')
|
|
|
|
url=("http://www.nanolx.org/home/item/75-oxygen-refit")
|
|
|
|
license=('LGPL3' 'GPL')
|
|
|
|
depends=('kdelibs' 'qt' 'oxygen-icons' 'cairo')
|
|
makedepends=('findutils' 'imagemagick' 'liblqr')
|
|
provides=('oxygenrefit2-icon-theme')
|
|
conflicts=('oxygenrefit2-icon-theme' 'gtk-integration')
|
|
replaces=('gtk-integration')
|
|
categories=('system')
|
|
#groups=('gtk-integration')
|
|
options=('!strip')
|
|
|
|
source=("http://download.tuxfamily.org/oxygenrefit2/oxygen-refit-2-$pkgver.tar.bz2")
|
|
|
|
md5sums=('60f32f98d8d33d82db79b6bb934f0580')
|
|
|
|
package() {
|
|
cd "${srcdir}"
|
|
install -d "${pkgdir}/usr/share/icons/"
|
|
cp -rf "oxygen-refit-2-${pkgver}" "${pkgdir}/usr/share/icons/" || return 1
|
|
mv "oxygen-refit-2-${pkgver}" "oxygen-refit-2"
|
|
find -type f -print0 | xargs -0 chmod 644
|
|
}
|