blob: e6800fc0f24d39b977ce6a00485f670d3124eea1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
# Maintainer: Natrio <natrio list ru>
pkgname=gimp-plugin-astronomy
pkgver=0.8
pkgrel=2
pkgdesc="Gimp Astronomy Plugins"
arch=('i686' 'x86_64')
url="http://hennigbuam.de/georg/gimp.html"
license=('GPL')
depends=('gimp' 'gsl' 'fftw')
makedepends=('perl-xml-parser')
source=("http://www.hennigbuam.de/georg/downloads/$pkgname-$pkgver.tar.bz2"
'stop-declare-strndup.patch')
md5sums=('8396e97e9f369a5139d0102b5f37b620' SKIP)
build() {
cd "$srcdir/$pkgname-$pkgver"
patch -p1 -i "$srcdir/stop-declare-strndup.patch"
./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var
make LIBS='-lm'
}
package() {
cd "$srcdir/$pkgname-$pkgver"
make DESTDIR="$pkgdir" install
}
|