mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 12:57:14 +08:00
23 lines
681 B
Bash
23 lines
681 B
Bash
# $Id: PKGBUILD 62101 2010-01-02 09:15:25Z tpowa $
|
|
# Maintainer: Tobias Powalowski <tpowa@archlinux.org>
|
|
|
|
pkgname=libnova
|
|
pkgver=0.13.0
|
|
pkgrel=1
|
|
pkgdesc="libnova is a general purpose, double precision, celestial mechanics, astrometry and astrodynamics library."
|
|
url="http://libnova.sourceforge.net/"
|
|
license=('GPL2')
|
|
arch=('i686' 'x86_64')
|
|
depends=('glibc')
|
|
makedepends=('pkgconfig')
|
|
source=(http://downloads.sourceforge.net/sourceforge/libnova/$pkgname-$pkgver.tar.gz)
|
|
options=(!libtool)
|
|
|
|
build() {
|
|
cd $srcdir/$pkgname-$pkgver
|
|
./configure --prefix=/usr
|
|
make || return 1
|
|
make DESTDIR=$pkgdir/ install
|
|
}
|
|
md5sums=('32f67b1ae28372582da7fe4e6f554dcd')
|