mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-17 14:42:01 +01:00
41 lines
1.2 KiB
Plaintext
41 lines
1.2 KiB
Plaintext
# 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"
|