2007-06-25 15:09:54 +10:00
|
|
|
# Description: A library for reading and writing quicktime files.
|
|
|
|
# URL: http://libquicktime.sourceforge.net/
|
2008-03-26 13:45:31 +11:00
|
|
|
# Maintainer: Danny Rawlins, monster dot romster at gmail dot com
|
2007-06-25 15:09:54 +10:00
|
|
|
# Packager: Younes Hafri, ycrux at club-internet dot fr
|
2008-03-14 21:12:02 +11:00
|
|
|
# Depends on: ffmpeg gtk libdivx libdv x264 xorg-libxaw
|
2007-06-25 15:09:54 +10:00
|
|
|
|
|
|
|
name=libquicktime
|
2008-01-10 12:25:14 +11:00
|
|
|
version=1.0.2
|
2007-06-25 15:09:54 +10:00
|
|
|
release=1
|
|
|
|
source=(http://dl.sourceforge.net/sourceforge/libquicktime/libquicktime-$version.tar.gz)
|
|
|
|
|
|
|
|
build() {
|
|
|
|
cd libquicktime-$version
|
|
|
|
|
|
|
|
./configure \
|
|
|
|
--prefix=/usr \
|
|
|
|
--mandir=/usr/man \
|
|
|
|
--enable-gpl \
|
|
|
|
--disable-nls
|
|
|
|
|
|
|
|
make
|
|
|
|
make DESTDIR=$PKG install
|
2008-01-10 12:25:14 +11:00
|
|
|
rm -r $PKG/usr/share/doc
|
2007-06-25 15:09:54 +10:00
|
|
|
}
|
|
|
|
|