mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-08 23:03:46 +00:00
24 lines
801 B
Bash
24 lines
801 B
Bash
# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
|
|
# Maintainer: Stefan Husmann <stefan-husmann@t-online.de>
|
|
# Contributor: Andrea Scarpino <bash.lnx@gmail.com>
|
|
# Contributor: sickhate <sickhate@tux-linux.net>
|
|
# Contributor: Bjorn Lindeijer <bjorn lindeijer nl>
|
|
|
|
pkgname=pigment
|
|
pkgver=0.3.17
|
|
pkgrel=2
|
|
pkgdesc="A GLib/GObject library designed to easily create rich UIs embedding several media types"
|
|
arch=('i686' 'x86_64')
|
|
url="https://code.fluendo.com/pigment/trac"
|
|
license=('GPL')
|
|
depends=('libgl' 'gstreamer0.10-base' 'gtk2')
|
|
options=('!libtool')
|
|
source=(http://elisa.fluendo.com/static/download/$pkgname/$pkgname-$pkgver.tar.bz2)
|
|
md5sums=('b0947a18cc9265f3129ff4b069c1ed0c')
|
|
|
|
build() {
|
|
cd "$srcdir/$pkgname-$pkgver"
|
|
./configure --prefix=/usr
|
|
make || return 1
|
|
make DESTDIR="$pkgdir" install
|
|
}
|