mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-05 13:27:09 +02:00
39 lines
1015 B
Plaintext
39 lines
1015 B
Plaintext
# Contributor: Alan Lacerda <alacerda@alpinelinux.org>
|
|
# Maintainer: Alan Lacerda <alacerda@alpinelinux.org>
|
|
pkgname=marco
|
|
pkgver=1.19.2
|
|
pkgrel=0
|
|
pkgdesc="MATE window manager"
|
|
url="https://github.com/mate-desktop/marco"
|
|
arch="all"
|
|
license="GPL-2.0"
|
|
depends="mate-common yelp-tools libxml2-utils"
|
|
makedepends="libtool itstool zenity intltool glib-dev gtk+3.0-dev
|
|
libxcomposite-dev libcanberra-dev"
|
|
subpackages="$pkgname-dev $pkgname-doc $pkgname-lang"
|
|
source="http://pub.mate-desktop.org/releases/${pkgver%.*}/$pkgname-$pkgver.tar.xz"
|
|
builddir="$srcdir/$pkgname-$pkgver"
|
|
|
|
build() {
|
|
cd "$builddir"
|
|
./configure \
|
|
--build=$CBUILD \
|
|
--host=$CHOST \
|
|
--sysconfdir=/etc \
|
|
--localstatedir=/var \
|
|
--prefix=/usr
|
|
make CFLAGS='-D_GNU_SOURCE'
|
|
}
|
|
|
|
check() {
|
|
cd "$builddir"
|
|
make check
|
|
}
|
|
|
|
package() {
|
|
cd "$builddir"
|
|
make DESTDIR="${pkgdir}" install
|
|
}
|
|
|
|
sha512sums="8de844e2a7ae9ea0fee855e2ea578ad973030591f68a675a027b5cc24556511ac3a346216c719b757f1f3475f5c19f1223beb1d81c60e60d8e689cce398174a7 marco-1.19.2.tar.xz"
|