25 lines
688 B
Plaintext
25 lines
688 B
Plaintext
# Description: Parole is a modern simple media player based on the GStreamer framework and written to fit well in the Xfce desktop
|
|
# URL: http://goodies.xfce.org/projects/applications/parole
|
|
# Maintainer: CRUX Xfce Team, xfce-ports at crux dot nu
|
|
# Packager: Jose V Beneyto, sepen at crux dot nu
|
|
# Depends on: xfce4-panel libnotify gst-plugins-good
|
|
|
|
name=parole
|
|
version=0.8.0
|
|
release=1
|
|
source=(http://archive.xfce.org/src/apps/$name/${version%.*}/$name-$version.tar.bz2)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
|
|
./configure --prefix=/usr \
|
|
--with-x \
|
|
--disable-nls \
|
|
--disable-debug
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
|
|
rm -rf $PKG/usr/share/locale
|
|
}
|