blob: c7f71c528dfe3b48dc156cc045c5bddc2e23c770 (
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
|
# Maintainer: Mike Pento <mpento@darkforge.net>
pkgname=arc-icon-theme-git
_gitname=arc-icon-theme
pkgver=20161122
pkgrel=1
pkgdesc='Arc icon theme. Latest commit from the master branch on Github.'
arch=(any)
url=https://github.com/horst3180/arc-icon-theme
license=('GPL3')
depends=('gtk-update-icon-cache')
makedepends=('git' 'automake')
optdepends=('moka-icon-theme-git: Arc icon theme was built to be used
on top of Moka icon theme')
source=("git+https://github.com/horst3180/${_gitname}.git")
md5sums=('SKIP')
conflicts=('arc-icon-theme')
pkgver() {
cd "${_gitname}"
git describe --tags | sed 's/\([^-]*-g\)/r\1/;s/-/./g'
}
build() {
cd "$srcdir/${_gitname}"
./autogen.sh --prefix=/usr
make
}
package() {
cd "${srcdir}/${_gitname}"
make DESTDIR="$pkgdir" install
}
|