blob: 108ac6125be25e8638b35c3541c641b72fe77d97 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# Description: Un programme de généalogie sous linux
# URL: http://gramps-project.org
# Maintainer: NuTyX core team
# Packager: fanch
# Depends on:gnome-python-extras,gtkspell,gconf, alsa-lib
# Run on: gnome-python-extras,gtkspell,gconf,alsa-lib
name=gramps
version=3.1.2
release=1
source=(http://downloads.sourceforge.net/gramps/$name-$version.tar.gz)
build() {
cd $name-$version
./configure --prefix=/usr
make
make DESTDIR=$PKG install
}
|