blob: 30629d1dff1d7d406504d611f6e6ae82d89f012a (
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
35
36
37
38
39
40
|
# Contributor: Carlo Landmeter <clandmeter@gmail.com>
# Maintainer: Sascha Paunovic <azarus@posteo.net>
pkgname=arc-theme
pkgver=20190330
pkgrel=0
pkgdesc="A flat theme with transparent elements"
url="https://github.com/NicoHood/arc-theme"
arch="noarch"
license="GPL-3.0"
depends="gtk-murrine-engine"
makedepends="automake autoconf libtool gtk+3.0-dev inkscape optipng sassc"
#https://github.com/NicoHood/arc-theme/archive/20190330.tar.gz
source="arc-theme-$pkgver.tar.gz::https://github.com/NicoHood/arc-theme/archive/$pkgver.tar.gz"
options="!check" # no test suite
builddir="$srcdir/$pkgname-$pkgver"
build() {
cd "$builddir"
autoreconf -vif
./configure \
--build=$CBUILD \
--host=$CHOST \
--prefix=/usr \
--sysconfdir=/etc \
--mandir=/usr/share/man \
--infodir=/usr/share/info \
--localstatedir=/var \
--disable-unity \
--disable-cinnamon \
--disable-gnome-shell \
--disable-metacity \
make
}
package() {
cd "$builddir"
make DESTDIR="$pkgdir" install
}
sha512sums="25183c5dc67d91356fe848595051fef88907c1ff18b5186941158d575ebef47b2c79cf0d7fbe2f4be64ad9de11fb859d0ca25b14eef0cfcc0ae15bf5ff9c191f arc-theme-20190330.tar.gz"
|