summaryrefslogtreecommitdiff
path: root/community/directfb/PKGBUILD
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2013-07-19 01:10:32 -0700
committerroot <root@rshg054.dnsready.net>2013-07-19 01:10:32 -0700
commit8fbc0076a4827ddc6af92e0b9daa4c4c31450808 (patch)
tree03fd0e2921ebd53228d9a93e32ed3976b636cbea /community/directfb/PKGBUILD
parente445a313723389ba9ee1fded025c567dae5b21ea (diff)
Fri Jul 19 01:09:18 PDT 2013
Diffstat (limited to 'community/directfb/PKGBUILD')
-rw-r--r--community/directfb/PKGBUILD28
1 files changed, 28 insertions, 0 deletions
diff --git a/community/directfb/PKGBUILD b/community/directfb/PKGBUILD
new file mode 100644
index 000000000..e7f09b43e
--- /dev/null
+++ b/community/directfb/PKGBUILD
@@ -0,0 +1,28 @@
+# $Id: PKGBUILD 90017 2013-05-06 19:36:41Z foutrelis $
+# Maintainer: Jaroslav Lichtblau <dragonlord@aur.archlinux.org>
+# Maintainer: Eric BĂ©langer <eric@archlinux.org>
+
+pkgname=directfb
+pkgver=1.6.3
+pkgrel=2
+pkgdesc="A thin library that provides hardware graphics acceleration, input device handling and abstraction, integrated windowing system on top of the Linux Framebuffer Device"
+arch=('i686' 'x86_64')
+url="http://www.directfb.org"
+license=('LGPL')
+depends=('gcc-libs' 'libjpeg' 'sdl' 'libpng' 'freetype2')
+options=('!libtool')
+source=(http://www.directfb.org/downloads/Core/DirectFB-${pkgver%.*}/DirectFB-${pkgver}.tar.gz)
+sha1sums=('0433c5999044ec9701481a92e50c0760cdb50c41')
+
+build() {
+ cd DirectFB-${pkgver}
+ ./configure --prefix=/usr --sysconfdir=/etc --enable-static \
+ --enable-zlib --enable-x11 --enable-sdl --disable-vnc --disable-osx \
+ --enable-video4linux2 --enable-voodoo
+ make
+}
+
+package() {
+ cd DirectFB-${pkgver}
+ make DESTDIR="${pkgdir}" install
+}