diff options
Diffstat (limited to 'goobox/Pkgfile')
-rw-r--r-- | goobox/Pkgfile | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/goobox/Pkgfile b/goobox/Pkgfile new file mode 100644 index 0000000..38fe637 --- /dev/null +++ b/goobox/Pkgfile @@ -0,0 +1,24 @@ +# Description: Lecteur de CD pour Gnome +# URL: http://people.gnome.org/~paobac/goobox/ +# Maintainer: NutyX Gnome team +# Packager: piernov <piernov@piernov.org> +# Depends on: brasero, libgnomeui, musicbrainz, libnotify, libdiscid +# Run on: brasero, musicbrainz, libnotify, libdiscid + +name=goobox +version=2.90.2 +release=1 + +source=(http://ftp.gnome.org/pub/GNOME/sources/$name/${version%.*}/$name-$version.tar.xz) + +build() { + cd $name-$version + ./configure --prefix=/usr \ + --disable-schemas-install \ + --enable-media-keys \ + --enable-notification \ + --disable-schemas-compile \ + --disable-scrollkeeper + make + make DESTDIR=$PKG install +} |