blob: f3b640912c48e0402f29d68e061cf1276032c519 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
# Previous Maintainer: Maxime Gauduin <alucryd@archlinux.org>
# Contributor: Diego <cdprincipe@gmail.com>
# Maintainer : Erik Dubois <erik.dubois@gmail.com>
pkgname=numix-gtk-theme-git
pkgver=2.6.7.r51.b652b19
pkgrel=1
pkgdesc='A flat and light theme with a modern look (GNOME, Openbox, Unity, Xfce)'
arch=('any')
url='https://github.com/numixproject/numix-gtk-theme'
license=('GPL3')
makedepends=('gdk-pixbuf2' 'git' 'glib2' 'libxml2' 'ruby-sass')
optdepends=('gtk-engine-murrine: GTK2 theme engine')
provides=('numix-gtk-theme-git')
conflicts=('numix-gtk-theme')
replaces=('numix-gtk-theme')
source=('git+https://github.com/numixproject/numix-gtk-theme.git')
md5sums=('SKIP')
pkgver() {
cd numix-gtk-theme
#git describe --tags | sed 's/^v//; s/-/.r/; s/-g/./'
git describe --tags | sed 's/2.6.6/2.6.7/; s/-/.r/; s/-g/./'
}
build() {
cd numix-gtk-theme
make
}
package() {
cd numix-gtk-theme
make DESTDIR="${pkgdir}" install
}
|