mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-30 13:02:27 +01:00
40 lines
1.1 KiB
Plaintext
40 lines
1.1 KiB
Plaintext
# Contributor: Carlo Landmeter <clandmeter@gmail.com>
|
|
# Maintainer: Sascha Paunovic <azarus@posteo.net>
|
|
pkgname=arc-theme
|
|
pkgver=20190917
|
|
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"
|
|
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="19b046bba9254bd2b6ab3eb250da7ad124a81119de38b2c6039e8a4c13e6c8bd6e4e9ee62feeb93319c958fc3ec2faee8e6aacbb3268f1543cfd8da83e2cb9c0 arc-theme-20190917.tar.gz"
|