mirror of
https://github.com/mac-a-r0ni/crux-xfce4.git
synced 2025-01-22 14:52:19 +01:00
28 lines
628 B
Plaintext
28 lines
628 B
Plaintext
# Description: GStreamer-based Media Player for XFCE
|
|
# URL: https://www.xfce.org
|
|
# Maintainer: mac-a-r0ni, j at lngn dot net
|
|
# Depends on: dbus-glib gst-plugins-good gtk-doc libnotify libxfce4ui
|
|
# Optional: gst-libav gst-plugins-bad gst-plugins-ugly
|
|
|
|
name=parole
|
|
version=4.18.2
|
|
release=1
|
|
source=(https://archive.xfce.org/src/apps/$name/${version:0:4}/$name-$version.tar.bz2)
|
|
|
|
build() {
|
|
|
|
cd $name-$version
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--libexecdir=/usr/lib/$name \
|
|
--sysconfdir=/etc \
|
|
--disable-gtk-doc \
|
|
--disable-nls
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
|
|
find $PKG/usr/lib/* -name "*.la" -type f|xargs rm -f
|
|
}
|