mirror of
https://github.com/mac-a-r0ni/crux-xfce4.git
synced 2025-01-22 06:52:19 +01:00
26 lines
718 B
Plaintext
26 lines
718 B
Plaintext
# Description: A cd burning suite for Xfce based off libburnia
|
|
# URL: https://docs.xfce.org/apps/xfburn/start
|
|
# Maintainer: mac-a-r0ni, j at lngn dot net
|
|
# Depends on: desktop-file-utils exo libburn libisofs libgudev
|
|
# Optional: gstreamer gst-plugins-base gst-plugins-good gst-plugins-bad gst-plugins-ugly
|
|
|
|
name=xfburn
|
|
version=0.7.2
|
|
release=1
|
|
source=(https://archive.xfce.org/src/apps/$name/0.7/$name-$version.tar.bz2)
|
|
|
|
build() {
|
|
prt-get isinst gstreamer && PKGMK_XFB+='--enable-gstreamer ' || PKGMK_XFB+=' --disable-gstreamer '
|
|
|
|
cd $name-$version
|
|
./configure $PKGMK_XFB \
|
|
--prefix=/usr \
|
|
--libexecdir=/usr/lib/$name \
|
|
--disable-static \
|
|
--disable-gstreamer \
|
|
--disable-nls
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
}
|