blob: 0004123fb079f0d2ab80788ae35c3702827abf77 (
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
26
27
28
29
30
31
32
33
34
35
|
# Maintainer: Andres Alejandro Navarro Alsina <aanavarroa@unal.edu.co>
# Contributor: Eric Mandel
_pkgname=funtools
pkgname=funtools-git
pkgver=v1.4.8.r7.8f206a4
pkgrel=1
pkgdesc=" FITS library and utility package. "
arch=('x86_64' 'i686')
url="https://github.com/ericmandel/funtools"
license=('GPL3')
depends=('sh')
makedepends=('git')
source=("${_pkgname}::git+${url}")
#noextract=()
md5sums=('SKIP')
pkgver() {
cd $_pkgname
printf "%s" "$(git describe --long | sed 's/\([^-]*-\)g/r\1/;s/-/./g')"
}
build() {
cd $_pkgname
./mkconfigure
./configure --prefix=/usr
make
}
package() {
cd $_pkgname
install -d "$pkgdir"/usr/share/man
make DESTDIR="$pkgdir" install
}
|