From bc42c16bdd4b5448c3f311637da8ad1f3c2b96cd Mon Sep 17 00:00:00 2001 From: Nicolás Reynolds Date: Wed, 22 Jun 2011 17:33:58 -0300 Subject: libquicktime-libre-1.2.2-3 --- libre/kernel26-libre/get_configs | 17 ----------------- libre/libquicktime-libre/PKGBUILD | 34 ++++++++++++++++++++++++++++++++++ 2 files changed, 34 insertions(+), 17 deletions(-) delete mode 100755 libre/kernel26-libre/get_configs create mode 100644 libre/libquicktime-libre/PKGBUILD (limited to 'libre') diff --git a/libre/kernel26-libre/get_configs b/libre/kernel26-libre/get_configs deleted file mode 100755 index 624ea1048..000000000 --- a/libre/kernel26-libre/get_configs +++ /dev/null @@ -1,17 +0,0 @@ -#!/bin/bash - -source PKGBUILD - -pkgname=${pkgname/-libre/} -KERNEL_VERSION=${2:-${_basekernel}-ARCH} -from=${1:-core} - -for pkgarch in ${arch[@]}; do - wget -nc "http://mirrors.kernel.org/archlinux/$from/os/${pkgarch}/${pkgname}-headers-${pkgver}-${pkgrel}-${pkgarch}.pkg.tar.xz" - tar -xOf "${pkgname}-headers-${pkgver}-${pkgrel}-${pkgarch}.pkg.tar.xz" usr/src/linux-${KERNEL_VERSION}/.config > config.${pkgarch} -done - -sed -i "s/-ARCH/-LIBRE/" config.* - -exit 0 - diff --git a/libre/libquicktime-libre/PKGBUILD b/libre/libquicktime-libre/PKGBUILD new file mode 100644 index 000000000..c6e4ab588 --- /dev/null +++ b/libre/libquicktime-libre/PKGBUILD @@ -0,0 +1,34 @@ +# $Id$ +# Maintainer: Mateusz Herych + +pkgname=libquicktime-libre +_pkgname=libquicktime +pkgver=1.2.2 +pkgrel=3 +pkgdesc="A library for reading and writing quicktime files (no unfree faac support)." +arch=('i686' 'x86_64') +license=('GPL') +url="http://libquicktime.sourceforge.net/" +depends=('gtk2' 'ffmpeg' 'alsa-lib' 'libxv' 'libgl' 'libxaw' 'x264' 'faad2') +options=('!libtool') +source=(http://downloads.sourceforge.net/sourceforge/$_pkgname/$_pkgname-$pkgver.tar.gz) +sha256sums=('a83ddaaeaf98231d9f224190dcb8810ebdabd3edb5c8cebe2fb083d25edb7436') +provides=("$_pkgname=$pkgver") +conflicts=($_pkgname) +replaces=($_pkgname) + +build() { + cd "$srcdir/$_pkgname-$pkgver" + ./configure --prefix=/usr \ + --enable-gpl \ + --with-ffmpeg \ + --with-x264 \ + --without-doxygen + make +} + +package() { + cd $srcdir/$_pkgname-$pkgver + make DESTDIR="$pkgdir" install +} + -- cgit v1.2.3-54-g00ecf