mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-05-04 12:01:41 +02:00
48 lines
1.3 KiB
Plaintext
48 lines
1.3 KiB
Plaintext
# Contributor: Alan Lacerda <alacerda@alpinelinux.org>
|
|
# Maintainer: Alan Lacerda <alacerda@alpinelinux.org>
|
|
pkgname=mate-desktop
|
|
pkgver=1.16.0
|
|
pkgrel=0
|
|
pkgdesc="The MATE Desktop Environment"
|
|
url="http://wiki.mate-desktop.org/mate-desktop"
|
|
arch="all"
|
|
license="GPL2"
|
|
depends="mate-common yelp-tools"
|
|
depends_dev="startup-notification"
|
|
makedepends="$depends_dev itstool intltool dconf-dev gtk+2.0-dev libxrandr-dev
|
|
libxml2-utils"
|
|
install=""
|
|
subpackages="$pkgname-lang $pkgname-dev $pkgname-doc"
|
|
source="http://pub.mate-desktop.org/releases/${pkgver%.*}/$pkgname-$pkgver.tar.xz"
|
|
|
|
_builddir="$srcdir/$pkgname-$pkgver"
|
|
prepare() {
|
|
local i
|
|
cd "$_builddir"
|
|
for i in $source; do
|
|
case $i in
|
|
*.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;;
|
|
esac
|
|
done
|
|
}
|
|
|
|
build() {
|
|
cd "$_builddir"
|
|
./configure \
|
|
--build=$CBUILD \
|
|
--host=$CHOST \
|
|
--sysconfdir=/etc \
|
|
--prefix=/usr \
|
|
|| return 1
|
|
make || return 1
|
|
}
|
|
|
|
package() {
|
|
cd "$_builddir"
|
|
make DESTDIR="${pkgdir}" install || return 1
|
|
}
|
|
|
|
md5sums="2dedbee701c9d471cfe8a633654044ce mate-desktop-1.16.0.tar.xz"
|
|
sha256sums="568d0b4aff4a02e3eaa19a679554487f21899dd3acb0d59da4d5f9879050d1bb mate-desktop-1.16.0.tar.xz"
|
|
sha512sums="b62e6944a3dec927f60faa2321f8c3094000e97847f90aa4d110a38f7d6f85b7855d7a49af321f10def87941d702d093322900113480c3ccd59e0149317f1db7 mate-desktop-1.16.0.tar.xz"
|