mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-18 22:54:00 +00:00
25 lines
941 B
Bash
Executable file
25 lines
941 B
Bash
Executable file
# $Id: PKGBUILD 47724 2009-07-25 16:48:23Z andyrtr $
|
|
# Maintainer: Tobias Kieslich <tobias funnychar archlinux.org>
|
|
# Contributor: Alois Nespor alois.nespor@gmail.com
|
|
|
|
pkgname=xfburn
|
|
pkgver=0.4.2
|
|
pkgrel=1
|
|
arch=('i686' 'x86_64')
|
|
pkgdesc="a simple CD/DVD burning tool based on libburnia libraries"
|
|
url="http://goodies.xfce.org/projects/applications/xfburn"
|
|
license=('GPL2')
|
|
groups=('xfce4-goodies')
|
|
install=${pkgname}.install
|
|
depends=('libburn>=0.6.8.pl00' 'libisofs>=0.6.20' 'libxfcegui4>=4.6.1' 'thunar>=1.0.1-4' 'hicolor-icon-theme'
|
|
'librsvg' 'gstreamer0.10-base>=0.10.23' 'desktop-file-utils')
|
|
source=(http://www.xfce.org/archive/src/apps/xfburn/0.4/$pkgname-$pkgver.tar.bz2)
|
|
md5sums=('67533208e2f487bdf6c779cfedae809d')
|
|
|
|
build() {
|
|
cd ${srcdir}/$pkgname-$pkgver
|
|
./configure --prefix=/usr --enable-gstreamer --enable-thunar-vfs \
|
|
--enable-dbus --enable-hal
|
|
make || return 1
|
|
make DESTDIR=${pkgdir} install || return 1
|
|
}
|