[arch-commits] Commit in enlightenment/repos (testing-x86_64 testing-x86_64/PKGBUILD)

Ronald van Haren ronald at archlinux.org
Thu Oct 10 15:09:54 UTC 2019


    Date: Thursday, October 10, 2019 @ 15:09:53
  Author: ronald
Revision: 364574

archrelease: copy trunk to testing-x86_64

Added:
  enlightenment/repos/testing-x86_64/
  enlightenment/repos/testing-x86_64/PKGBUILD
    (from rev 364573, enlightenment/trunk/PKGBUILD)

----------+
 PKGBUILD |   49 +++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 49 insertions(+)

Copied: enlightenment/repos/testing-x86_64/PKGBUILD (from rev 364573, enlightenment/trunk/PKGBUILD)
===================================================================
--- testing-x86_64/PKGBUILD	                        (rev 0)
+++ testing-x86_64/PKGBUILD	2019-10-10 15:09:53 UTC (rev 364574)
@@ -0,0 +1,49 @@
+# Maintainer: Ronald van Haren <ronald at archlinux.org>
+# Contributor: Enlightenment Developers <enlightenment-devel at enlightenment.org>>
+
+pkgname=enlightenment
+pkgver=0.23.1
+pkgrel=1
+pkgdesc="Enlightenment window manager"
+arch=('x86_64')
+url="http://www.enlightenment.org"
+license=('BSD')
+depends=('efl' 'xcb-util-keysyms' 'hicolor-icon-theme' 'pixman' 'mesa'
+         'desktop-file-utils' 'udisks2' 'ttf-font' 'bluez-libs' 'pam')
+optdepends=('connman: network module'
+            'acpid: power events on laptop lid close'
+            'geoip-database: geolocation module'
+            'xorg-server-xwayland: xwayland support'
+            'packagekit: needed for packagekit module')
+makedepends=('xorg-server-xwayland' 'meson' 'ninja')
+provides=('notification-daemon')
+backup=('etc/enlightenment/sysactions.conf'
+        'etc/xdg/menus/e-applications.menu')
+source=("https://download.enlightenment.org/rel/apps/${pkgname}/$pkgname-$pkgver.tar.xz")
+sha256sums=('e530590c09b560679621f4531d55c242cfafe8523309e0ae88fb267e00f52c34')
+
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  export CFLAGS="$CFLAGS -fvisibility=hidden"
+
+  if [ -d build ]; then
+    rm -f build
+  fi
+  mkdir build
+  meson --prefix=/usr \
+    -Dwl=true \
+    . build
+
+  ninja -C build
+  }
+
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  DESTDIR="$pkgdir" ninja -C build install
+  
+  # install LICENSE
+  install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING"
+}



More information about the arch-commits mailing list