mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-05 15:37:14 +08:00
348d542db8
will commit them separately next time... it's just too much work to do separate commits right now
30 lines
964 B
Bash
30 lines
964 B
Bash
#
|
|
# Platform Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer abveritas[at]chakra-project[dot]org>
|
|
|
|
pkgname=directfb
|
|
pkgver=1.7.0
|
|
pkgrel=1
|
|
pkgdesc="Library that provides hardware graphics acceleration, input device handling and abstraction, integrated windowing system on top of the Linux Framebuffer Device"
|
|
arch=('x86_64')
|
|
url="http://www.directfb.org"
|
|
license=('LGPL')
|
|
depends=('gcc-libs' 'libjpeg-turbo' 'sdl' 'libpng' 'freetype2')
|
|
options=('!libtool')
|
|
source=("http://www.directfb.org/downloads/Core/DirectFB-${pkgver%.*}/DirectFB-${pkgver}.tar.gz")
|
|
sha1sums=('095852479098a55be2b0c6a0250af4159ee16e7c')
|
|
|
|
build() {
|
|
cd "${srcdir}/DirectFB-${pkgver}"
|
|
./configure --prefix=/usr --sysconfdir=/etc --enable-static --enable-debug \
|
|
--enable-zlib --enable-x11 --enable-sdl --disable-vnc --disable-osx \
|
|
--enable-video4linux2 --enable-voodoo
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/DirectFB-${pkgver}"
|
|
make DESTDIR="${pkgdir}" install
|
|
}
|