PKGBUILDs/community/efl/PKGBUILD
2022-01-03 02:18:51 +00:00

89 lines
2.9 KiB
Bash

# Maintainer: Ronald van Haren <ronald@archlinux.org>
# Contributor: Enlightenment Developers <enlightenment-devel@enlightenment.org>
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
# - configure with -Dnative-arch-optimization=false for !aarch64
pkgbase=efl
pkgname=('efl' 'efl-docs')
pkgver=1.26.1
pkgrel=1
pkgdesc="Enlightenment Foundation Libraries"
arch=('x86_64')
url="https://www.enlightenment.org"
license=('BSD' 'LGPL2.1' 'GPL2' 'MIT' 'custom')
depends=('curl' 'fontconfig' 'fribidi' 'harfbuzz'
'gst-plugins-base-libs' 'lua52' 'libexif' 'libgl' 'libinput'
'libpulse' 'libsndfile' 'libspectre' 'libraw' 'librsvg' 'libwebp'
'libxcomposite' 'libxcursor' 'libxinerama' 'libxkbcommon' 'libxrandr'
'libxss' 'libunwind' 'mesa' 'poppler' 'openjpeg2' 'libjpeg-turbo'
'libutil-linux' 'dbus'
'shared-mime-info' 'mailcap' 'ttf-font' 'scim'
'wayland' 'wayland-protocols' 'libxkbcommon-x11' 'pulseaudio')
optdepends=('gst-plugins-base: Video and thumbnail codecs'
'gst-plugins-good: Video and thumbnail codecs'
'gst-plugins-bad: Video and thumbnail codecs'
'gst-plugins-ugly: Video and thumbnail codecs'
'gst-libav: Video and thumbnails with ffmpeg/libav'
'libreoffice: Office document thumbnails')
makedepends=('doxygen' 'python' 'texlive-core' 'ghostscript' 'imagemagick' 'meson' 'ninja')
options=('!emptydirs')
source=(https://download.enlightenment.org/rel/libs/${pkgname}/$pkgname-$pkgver.tar.xz)
sha256sums=('86a9677e3d48dd0c13a399ebb417bd417bd8d150d6b06cc491bc92275c88a642')
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
export CFLAGS="$CFLAGS -fvisibility=hidden"
if [ -d build ]; then
rm -rf build
fi
mkdir -p build
[[ $CARCH != "aarch64" ]] && CONFIG="-Dnative-arch-optimization=false"
meson --prefix=/usr \
-Dfb=true \
-Ddrm=true \
-Dwl=true \
-Dnetwork-backend=connman \
-Dlua-interpreter=lua \
-Dbindings= \
-Dbuild-examples=false \
-Dbuild-tests=false \
$CONFIG . build
ninja -C build
cd build/doc
doxygen
}
package_efl(){
replaces=('elementary' 'evas_generic_loaders' 'emotion_generic_players')
cd "${srcdir}/${pkgname}-${pkgver}"
DESTDIR="${pkgdir}" ninja -C build 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}/build"
install -d "${pkgdir}/usr/share/doc/${pkgbase}"
cp -a html "${pkgdir}/usr/share/doc/${pkgbase}/html"
cp -a latex "${pkgdir}/usr/share/doc/${pkgbase}/latex"
#cp -a man "${pkgdir}/usr/share"
}