25 lines
709 B
Bash
25 lines
709 B
Bash
# Maintainer: Jesus E. <heckyel@riseup.net>
|
|
|
|
pkgname=gnome-common
|
|
pkgver=3.18.0
|
|
pkgrel=1
|
|
pkgdesc='Common development macros'
|
|
arch=('any')
|
|
depends=('sh' 'autoconf-archive' 'intltool' 'yelp-tools')
|
|
license=('GPL-2')
|
|
url='https://www.gnome.org'
|
|
source=(https://download.gnome.org/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
|
|
sha512sums=('b931c9a6668d996560549738bb2d95f86f56fa68ce930c077275bdc8fddbc2d28d215c1190099db1df851417902fca87ec81f1c0e644c5b9630a175e1cde0719')
|
|
|
|
build() {
|
|
cd $pkgname-$pkgver
|
|
./configure --prefix=/usr --with-autoconf-archive
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd $pkgname-$pkgver
|
|
make DESTDIR="$pkgdir" install
|
|
install -Dm644 COPYING -t "${pkgdir}/usr/share/licenses/$pkgname"
|
|
}
|