mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
27 lines
933 B
Bash
27 lines
933 B
Bash
# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
|
|
# Maintainer: Andrea Scarpino <andrea@archlinux.org>
|
|
# Contributor: Roman Kyrylych <Roman.Kyrylych@gmail.com>
|
|
# Contributor: detto <detto-brumm@freenet.de>
|
|
|
|
pkgname=gtk-engine-murrine
|
|
pkgver=0.90.3
|
|
pkgrel=1
|
|
pkgdesc="GTK2 engine to make your desktop look like a 'murrina', an italian word meaning the art glass works done by Venicians glass blowers."
|
|
arch=('i686' 'x86_64')
|
|
url="http://cimitan.com/murrine/project/murrine"
|
|
license=('GPL')
|
|
depends=('gtk2')
|
|
makedepends=('intltool' 'perl')
|
|
optdepends=('murrine-themes-collection: themes for Murrine engine')
|
|
install=gtk-engine-murrine.install
|
|
source=(http://ftp.gnome.org/pub/GNOME/sources/murrine/0.90/murrine-$pkgver.tar.bz2)
|
|
md5sums=('58a10b5c7b5e114a8a7ff5705fe274f5')
|
|
options=('!libtool')
|
|
|
|
build() {
|
|
cd ${srcdir}/murrine-$pkgver
|
|
|
|
./configure --prefix=/usr --enable-animation
|
|
make || return 1
|
|
make DESTDIR=${pkgdir} install
|
|
}
|