mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
23 lines
750 B
Bash
23 lines
750 B
Bash
# $Id: PKGBUILD 23150 2009-01-04 01:48:18Z eric $
|
|
# Maintainer: Eric Belanger <eric@archlinux.org>
|
|
# Contributor: Tom Newsom <Jeepster@gmx.co.uk>
|
|
|
|
pkgname=epplet-base
|
|
pkgver=0.12
|
|
pkgrel=1
|
|
pkgdesc="Addon plugins for the enlightenment windowmanager"
|
|
arch=('i686' 'x86_64')
|
|
url="http://www.enlightenment.org"
|
|
license=('GPL')
|
|
depends=('esound' 'imlib2' 'libtiff' 'glut' 'mesa' 'libcdaudio')
|
|
options=('!libtool')
|
|
source=(http://downloads.sourceforge.net/sourceforge/enlightenment/epplets-${pkgver}.tar.gz)
|
|
md5sums=('7f5119eeac9b938e6d64b972e4b9d984')
|
|
sha1sums=('4995ae097458d2bfa6096b3e8fa76d9c8049c740')
|
|
|
|
build() {
|
|
cd ${srcdir}/epplets-${pkgver}
|
|
./configure --prefix=/usr || return 1
|
|
make || return 1
|
|
make DESTDIR=${pkgdir} install || return 1
|
|
}
|