mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 21:07:13 +08:00
22 lines
500 B
Bash
22 lines
500 B
Bash
pkgname=gnome-common
|
|
pkgver=3.12.0
|
|
pkgrel=1
|
|
pkgdesc="Common development macros for GNOME -- required e.g. for pygobject"
|
|
arch=(any)
|
|
depends=('sh')
|
|
license=('GPL')
|
|
url="http://www.gnome.org"
|
|
source=(http://download.gnome.org/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
|
|
sha256sums=('18712bc2df6b2dd88a11b9f7f874096d1c0c6e7ebc9cfc0686ef963bd590e1d8')
|
|
|
|
build() {
|
|
cd $pkgname-$pkgver
|
|
./configure --prefix=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd $pkgname-$pkgver
|
|
make DESTDIR="$pkgdir" install
|
|
}
|