blob: d75894a5da1bafcbffa7bcf8ecd3ff0d59960701 (
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
|
# 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=3.0.0
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
}
|