blob: c762d7dca5611f40afa1402bfed8cab8dac9798f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# 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
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
}
|