mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
23 lines
744 B
Bash
23 lines
744 B
Bash
# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
|
|
# Maintainer: Mateusz Herych <heniekk@gmail.com>
|
|
|
|
pkgname=gmerlin
|
|
pkgver=0.4.0
|
|
pkgrel=5
|
|
pkgdesc="Multimedia architecture for Linux"
|
|
arch=('i686' 'x86_64')
|
|
url="http://openmovieeditor.sourceforge.net/HomePage"
|
|
license=('GPL')
|
|
depends=('gavl' 'libxml2' 'gtk2' 'libxv' 'mesa' 'esound' 'libvisual' 'libcdio' 'musicbrainz' 'mjpegtools')
|
|
source=(http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz)
|
|
md5sums=('d403dafa7c98808c2a03adf2d0194845')
|
|
options=('!libtool')
|
|
build() {
|
|
cd $startdir/src/$pkgname-$pkgver
|
|
rm -rf cpuinfo.sh
|
|
./configure --prefix=/usr \
|
|
--without-doxygen
|
|
make || return 1
|
|
make DESTDIR=$startdir/pkg install
|
|
rm -rf $pkgdir/usr/share/info/dir
|
|
}
|