mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-05 13:27:09 +02:00
40 lines
1.0 KiB
Plaintext
40 lines
1.0 KiB
Plaintext
# Contributor: Alan Lacerda <alacerda@alpinelinux.org>
|
|
# Maintainer: Alan Lacerda <alacerda@alpinelinux.org>
|
|
pkgname=mate-desktop
|
|
pkgver=1.19.3
|
|
pkgrel=0
|
|
pkgdesc="The MATE Desktop Environment"
|
|
url="http://wiki.mate-desktop.org/mate-desktop"
|
|
arch="all"
|
|
license="GPL-2.0"
|
|
depends="mate-common yelp-tools"
|
|
depends_dev="startup-notification"
|
|
makedepends="$depends_dev itstool intltool dconf-dev gtk+3.0-dev
|
|
libxrandr-dev libxml2-utils"
|
|
subpackages="$pkgname-lang $pkgname-dev $pkgname-doc"
|
|
source="http://pub.mate-desktop.org/releases/${pkgver%.*}/$pkgname-$pkgver.tar.xz"
|
|
builddir="$srcdir/$pkgname-$pkgver"
|
|
|
|
build() {
|
|
cd "$builddir"
|
|
./configure \
|
|
--build=$CBUILD \
|
|
--host=$CHOST \
|
|
--enable-static=no \
|
|
--sysconfdir=/etc \
|
|
--prefix=/usr
|
|
make
|
|
}
|
|
|
|
check() {
|
|
cd "$builddir"
|
|
make check
|
|
}
|
|
|
|
package() {
|
|
cd "$builddir"
|
|
make DESTDIR="${pkgdir}" install
|
|
}
|
|
|
|
sha512sums="77fc0a8f4f39bbec3a79884d2586950dcc6dd1fc8f1a679a9c17a165e05dfac6101efb418a3c78ac7da8a2406e83d2984137ce06f47ccecc1df9de9263c79095 mate-desktop-1.19.3.tar.xz"
|