mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-04-21 01:56:37 +02:00
32 lines
813 B
Text
32 lines
813 B
Text
# Contributor: Carlo Landmeter <clandmeter@alpinelinux.org>
|
|
# Maintainer: Francesco Colista <fcolista@alpinelinux.org>
|
|
pkgname=gnome-common
|
|
pkgver=3.18.0
|
|
pkgrel=3
|
|
pkgdesc="Common development macros for GNOME"
|
|
url="https://www.gnome.org"
|
|
arch="noarch"
|
|
license="LGPL-2.1-or-later"
|
|
source="https://download.gnome.org/sources/gnome-common/${pkgver%.*}/gnome-common-$pkgver.tar.xz"
|
|
|
|
check() {
|
|
make check
|
|
}
|
|
|
|
build() {
|
|
./configure \
|
|
--build=$CBUILD \
|
|
--host=$CHOST \
|
|
--prefix=/usr \
|
|
--sysconfdir=/etc \
|
|
--mandir=/usr/share/man \
|
|
--infodir=/usr/share/info \
|
|
--localstatedir=/var
|
|
make
|
|
}
|
|
|
|
package() {
|
|
make DESTDIR="$pkgdir" install
|
|
}
|
|
|
|
sha512sums="b931c9a6668d996560549738bb2d95f86f56fa68ce930c077275bdc8fddbc2d28d215c1190099db1df851417902fca87ec81f1c0e644c5b9630a175e1cde0719 gnome-common-3.18.0.tar.xz"
|