mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-08 23:03:46 +00:00
26 lines
786 B
Bash
26 lines
786 B
Bash
|
# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
|
||
|
# Maintainer: Roman Kyrylych <roman@archlinux.org>
|
||
|
# Contributor: cdhotfire <cdhotfire@gmail.com>
|
||
|
|
||
|
pkgname=rawstudio
|
||
|
pkgver=1.2
|
||
|
pkgrel=2
|
||
|
pkgdesc="An open source raw-image converter written in GTK+."
|
||
|
arch=('i686' 'x86_64')
|
||
|
license=('GPL')
|
||
|
url="http://rawstudio.org/"
|
||
|
depends=('gconf' 'libxml2' 'lcms' 'libjpeg' 'libtiff' 'desktop-file-utils' 'exiv2')
|
||
|
install=rawstudio.install
|
||
|
source=(http://rawstudio.org/files/release/$pkgname-$pkgver.tar.gz
|
||
|
rawstudio-const.patch)
|
||
|
|
||
|
build() {
|
||
|
cd $srcdir/$pkgname-$pkgver
|
||
|
patch -Np1 -i $srcdir/rawstudio-const.patch || return 1
|
||
|
./configure --prefix=/usr
|
||
|
make || return 1
|
||
|
make prefix=$pkgdir/usr install
|
||
|
}
|
||
|
md5sums=('25399cd80294fa44220a8940fc77689f'
|
||
|
'6692b460e838ea56462aff7626b2dcef')
|