mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
69 lines
2.2 KiB
Bash
69 lines
2.2 KiB
Bash
# $Id$
|
|
# Maintainer: Ronald van Haren <ronald@archlinux.org>
|
|
# Contributor: Enlightenment Developers <enlightenment-devel@enlightenment.org>
|
|
|
|
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
|
# - configure with --disable-neon
|
|
|
|
pkgbase=efl
|
|
pkgname=('efl' 'efl-docs')
|
|
pkgver=1.11.0
|
|
pkgrel=1
|
|
pkgdesc="Enlightenment Foundation Libraries"
|
|
arch=('i686' 'x86_64')
|
|
url="http://www.enlightenment.org"
|
|
license=('BSD' 'LGPL2.1' 'GPL2' 'custom')
|
|
depends=('bullet' 'libjpeg-turbo' 'gst-plugins-base'
|
|
'luajit' 'curl' 'fribidi' 'libpulse' 'libxcomposite'
|
|
'libxinerama' 'libxrandr' 'libxss'
|
|
'libxcursor' 'libxp' 'libwebp' 'shared-mime-info'
|
|
'libxkbcommon' 'wayland')
|
|
optdepends=('python2: eina-bench-cmp')
|
|
makedepends=('doxygen' 'python')
|
|
replaces=('ecore' 'edje' 'eet' 'eeze' 'efreet' 'eina' 'eio' 'embryo'
|
|
'emotion' 'ethumb' 'evas')
|
|
options=('!emptydirs')
|
|
source=(http://download.enlightenment.org/rel/libs/${pkgname}/$pkgname-$pkgver.tar.gz)
|
|
install=efl.install
|
|
sha1sums=('e639248be1f9ae3b9351251adf67823105be7da9')
|
|
|
|
prepare() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
sed -i 's/env python$/&2/' src/scripts/eina/eina-bench-cmp
|
|
}
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
|
|
export CFLAGS="$CFLAGS -fvisibility=hidden"
|
|
|
|
./configure --prefix=/usr \
|
|
--disable-static --disable-tslib --enable-fb \
|
|
--enable-xinput22 --enable-multisense --enable-systemd \
|
|
--enable-image-loader-webp --enable-harfbuzz --enable-wayland --disable-neon
|
|
|
|
make
|
|
make -j1 doc
|
|
}
|
|
|
|
package_efl(){
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
make -j1 DESTDIR=${pkgdir} install
|
|
|
|
# install non-standard license files
|
|
install -Dm644 "${srcdir}/${pkgname}-${pkgver}/licenses/COPYING.BSD" \
|
|
"${pkgdir}/usr/share/licenses/${pkgname}/COPYING.BSD"
|
|
install -Dm644 "${srcdir}/${pkgname}-${pkgver}/licenses/COPYING.SMALL" \
|
|
"${pkgdir}/usr/share/licenses/${pkgname}/COPYING.SMALL"
|
|
}
|
|
|
|
package_efl-docs() {
|
|
pkgdesc="Documentation for the Enlightenment Foundation Libraries"
|
|
depends=()
|
|
|
|
cd "${srcdir}/${pkgbase}-${pkgver}"
|
|
install -d "${pkgdir}/usr/share/doc/${pkgbase}"
|
|
cp -a doc/html "${pkgdir}/usr/share/doc/${pkgbase}/html"
|
|
cp -a doc/latex "${pkgdir}/usr/share/doc/${pkgbase}/latex"
|
|
}
|
|
|