mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-05 13:27:09 +02:00
35 lines
809 B
Plaintext
35 lines
809 B
Plaintext
# Contributor: Alan Lacerda <alacerda@alpinelinux.org>
|
|
# Maintainer: Alan Lacerda <alacerda@alpinelinux.org>
|
|
pkgname=mate-common
|
|
pkgver=1.19.0
|
|
pkgrel=0
|
|
pkgdesc="Common scripts and macros"
|
|
url="http://mate-desktop.org/"
|
|
arch="noarch"
|
|
license="GPL-3.0-or-later"
|
|
subpackages="$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 \
|
|
--sysconfdir=/etc \
|
|
--prefix=/usr
|
|
make
|
|
}
|
|
|
|
check() {
|
|
cd "$builddir"
|
|
make check
|
|
}
|
|
|
|
package() {
|
|
cd "$builddir"
|
|
make DESTDIR="${pkgdir}" install
|
|
}
|
|
|
|
sha512sums="b96de402ed3921c302a5072c06c9d6aeec3ff0665446f44aeced85b03660618fcdb737c2b027e01b9188ba2812ac4fed51a05dd757cd7d0881c4eee31e418b80 mate-common-1.19.0.tar.xz"
|