PKGBUILDs/extra/efl/PKGBUILD

92 lines
3 KiB
Bash
Raw Normal View History

2014-05-26 20:39:26 +00:00
# Maintainer: Ronald van Haren <ronald@archlinux.org>
# Contributor: Enlightenment Developers <enlightenment-devel@enlightenment.org>
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
2019-12-13 06:56:41 +00:00
# - configure with -Dnative-arch-optimization=false for !aarch64
2014-05-26 20:39:26 +00:00
pkgbase=efl
pkgname=('efl' 'efl-docs')
2019-12-13 06:56:41 +00:00
pkgver=1.23.1
2019-05-16 23:02:30 +00:00
pkgrel=1
2014-05-26 20:39:26 +00:00
pkgdesc="Enlightenment Foundation Libraries"
2018-02-07 09:45:31 +00:00
arch=('x86_64')
2017-04-24 23:44:24 +00:00
url="https://www.enlightenment.org"
2014-05-26 20:39:26 +00:00
license=('BSD' 'LGPL2.1' 'GPL2' 'custom')
2019-12-13 06:56:41 +00:00
depends=('avahi' 'bullet' 'curl' 'fontconfig' 'fribidi'
'gst-plugins-base-libs' 'luajit' 'libexif' 'libgl' 'libinput'
'libpulse' 'libspectre' 'libraw' 'librsvg' 'libwebp' 'libxcomposite'
'libxcursor' 'libxinerama' 'libxkbcommon' 'libxp' 'libxrandr'
'libxss' 'libunwind' 'mesa' 'openjpeg2' 'poppler'
'shared-mime-info' 'mailcap' 'ttf-font' 'scim' 'libibus' 'glib2'
'wayland' 'wayland-protocols' 'libxkbcommon-x11'
'pulseaudio')
optdepends=('geoclue: For elocation'
'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'
'python2: Compare Eina benchmarks')
makedepends=('doxygen' 'python' 'texlive-core' 'ghostscript' 'imagemagick' 'meson' 'ninja')
2014-05-26 20:39:26 +00:00
options=('!emptydirs')
2018-02-07 09:45:31 +00:00
source=(https://download.enlightenment.org/rel/libs/${pkgname}/$pkgname-$pkgver.tar.xz)
2019-12-13 06:56:41 +00:00
sha256sums=('d62220cca16d434c18b36fe3acffa0f5c0e669da4931b133524183308f242f61')
2014-05-26 20:39:26 +00:00
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
export CFLAGS="$CFLAGS -fvisibility=hidden"
2019-12-13 06:56:41 +00:00
if [ -d build ]; then
rm -rf build
fi
mkdir -p build
[[ $CARCH != "aarch64" ]] && CONFIG="-Dnative-arch-optimization=false"
2016-09-05 16:42:04 +00:00
2019-12-13 06:56:41 +00:00
meson --prefix=/usr \
-Dfb=true \
-Ddrm=true \
-Dwl=true \
-Dnetwork-backend=connman \
-Devas-loaders-disabler=json \
-Dbindings= \
-Dbuild-examples=false \
-Dbuild-tests=false \
-Decore-imf-loaders-disabler= \
$CONFIG . build
2014-05-26 20:39:26 +00:00
2019-12-13 06:56:41 +00:00
ninja -C build
2018-08-23 23:31:17 +00:00
2019-12-13 06:56:41 +00:00
cd build/doc
2018-08-23 23:31:17 +00:00
doxygen
2014-05-26 20:39:26 +00:00
}
package_efl(){
2016-09-05 15:40:23 +00:00
replaces=('elementary' 'evas_generic_loaders' 'emotion_generic_players')
2014-05-26 20:39:26 +00:00
cd "${srcdir}/${pkgname}-${pkgver}"
2019-12-13 06:56:41 +00:00
DESTDIR="${pkgdir}" ninja -C build install
2014-05-26 20:39:26 +00:00
# install non-standard license files
install -Dm644 "${srcdir}/${pkgname}-${pkgver}/licenses/COPYING.BSD" \
2014-06-14 19:54:08 +00:00
"${pkgdir}/usr/share/licenses/${pkgname}/COPYING.BSD"
2014-05-26 20:39:26 +00:00
install -Dm644 "${srcdir}/${pkgname}-${pkgver}/licenses/COPYING.SMALL" \
2014-06-14 19:54:08 +00:00
"${pkgdir}/usr/share/licenses/${pkgname}/COPYING.SMALL"
2014-05-26 20:39:26 +00:00
}
package_efl-docs() {
pkgdesc="Documentation for the Enlightenment Foundation Libraries"
depends=()
2019-12-13 06:56:41 +00:00
cd "${srcdir}/${pkgbase}-${pkgver}/build"
2014-05-26 20:39:26 +00:00
install -d "${pkgdir}/usr/share/doc/${pkgbase}"
2019-12-13 06:56:41 +00:00
cp -a html "${pkgdir}/usr/share/doc/${pkgbase}/html"
cp -a latex "${pkgdir}/usr/share/doc/${pkgbase}/latex"
#cp -a man "${pkgdir}/usr/share"
2014-05-26 20:39:26 +00:00
}