diff options
Diffstat (limited to 'rarian/Pkgfile')
-rw-r--r-- | rarian/Pkgfile | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/rarian/Pkgfile b/rarian/Pkgfile new file mode 100644 index 000000000..94b3cf748 --- /dev/null +++ b/rarian/Pkgfile @@ -0,0 +1,24 @@ +# Description: Librairie pour documentation de donnees meta +# URL: http://rarian.freedesktop.org/ +# Maintainer: NuTyX core team +# Packager: thierryn1 at hispeed dot ch +# Depends on: libxslt +# Run on: libxslt + +name=rarian +version=0.8.1 +release=1 +source=(http://ftp.gnome.org/pub/gnome/sources/rarian/0.8/$name-$version.tar.bz2 \ + http://nutyx.meticul.eu/files/patchs/$name/user-segfault.patch) + +build() { + cd $name-$version + patch -p0 -i ../user-segfault.patch + ./configure --prefix=/usr \ + --sysconfdir=/etc \ + --localstatedir=/var \ + --disable-static + make + make DESTDIR=$PKG install +} + |