27 lines
739 B
Plaintext
27 lines
739 B
Plaintext
# Description: avi editor
|
|
# URL: http://fixounet.free.fr/avidemux/
|
|
# Maintainer: Han Boetes <han@mijncomputer.nl>
|
|
# Packager: Han Boetes <han@mijncomputer.nl>
|
|
# Depends on: faac lame libsdl libvorbis libxvid firefox
|
|
|
|
# Not the binary version of firefox allas, mozilla also works BTW
|
|
|
|
name=avidemux
|
|
version=2.3.0
|
|
release=1
|
|
source="http://download.berlios.de/avidemux/avidemux_$version.tar.gz"
|
|
|
|
build()
|
|
{
|
|
cd ${name}_$version
|
|
export LIBS='-L/usr/lib/firefox'
|
|
export LD_RUN_PATH='/usr/lib/firefox'
|
|
./configure \
|
|
--prefix=/usr \
|
|
--disable-nls \
|
|
--with-jsapi-include=/usr/include/firefox/js
|
|
make LDFLAGS='-rpath /usr/lib/firefox'
|
|
make install DESTDIR=$PKG
|
|
mv $PKG/usr/bin/avidemux{2,}
|
|
}
|