mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-10 06:34:36 +08:00
31 lines
565 B
Bash
31 lines
565 B
Bash
# maintainer almack@chakraos.org
|
|
|
|
pkgname=glu
|
|
pkgver=9.0.0
|
|
pkgrel=2
|
|
pkgdesc="Mesa OpenGL Utility library"
|
|
arch=('x86_64')
|
|
url="http://cgit.freedesktop.org/mesa/glu/"
|
|
license=('LGPL')
|
|
depends=('libgl')
|
|
source=(ftp://ftp.freedesktop.org/pub/mesa/$pkgname/$pkgname-$pkgver.tar.bz2)
|
|
md5sums=('be9249132ff49275461cf92039083030')
|
|
|
|
build() {
|
|
cd "$srcdir/$pkgname-$pkgver"
|
|
|
|
./configure --prefix=/usr --disable-static
|
|
make
|
|
}
|
|
|
|
check() {
|
|
cd "$srcdir/$pkgname-$pkgver"
|
|
|
|
make -k check
|
|
}
|
|
|
|
package() {
|
|
cd "$srcdir/$pkgname-$pkgver"
|
|
|
|
make DESTDIR="$pkgdir/" install
|
|
} |