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

Christian Hesse eworm at gemini.archlinux.org
Mon Feb 7 13:14:51 UTC 2022


    Date: Monday, February 7, 2022 @ 13:14:50
  Author: eworm
Revision: 436385

archrelease: copy trunk to testing-x86_64

Added:
  imlib2/repos/testing-x86_64/
  imlib2/repos/testing-x86_64/PKGBUILD
    (from rev 436384, imlib2/trunk/PKGBUILD)

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

Copied: imlib2/repos/testing-x86_64/PKGBUILD (from rev 436384, imlib2/trunk/PKGBUILD)
===================================================================
--- testing-x86_64/PKGBUILD	                        (rev 0)
+++ testing-x86_64/PKGBUILD	2022-02-07 13:14:50 UTC (rev 436385)
@@ -0,0 +1,41 @@
+# Maintainer: Ronald van Haren <ronald.archlinux.org>
+# Contributor: Arjan Timmerman <arjan.archlinux.org>
+# Contributor: Tom Newsom <Jeepster.gmx.co.uk>
+
+pkgname=imlib2
+pkgver=1.8.0
+pkgrel=1
+pkgdesc='Library that does image file loading and saving as well as rendering, manipulation, arbitrary polygon support'
+url='https://sourceforge.net/projects/enlightenment/'
+arch=('x86_64')
+license=('BSD')
+options=('debug')
+depends=('libtiff' 'giflib' 'bzip2' 'freetype2' 'libxext' 'libpng' 'libid3tag' 'libjpeg-turbo' 'libwebp' 'libheif' 'librsvg' 'xz')
+source=("https://downloads.sourceforge.net/project/enlightenment/imlib2-src/${pkgver}/${pkgname}-${pkgver}.tar.xz")
+sha512sums=('e4e4dbd58b9413d11a2ca645b7351c5b441b330d579b6d9f53db445e4d10e30cfeb77158d018ce14d37b536314f238b8ddf7366d293975709d9c11765e7c5735')
+
+build() {
+  cd "${pkgname}-${pkgver}"
+
+  ./configure \
+    --prefix=/usr \
+    --sysconfdir=/etc/imlib2 \
+    --x-libraries=/usr/lib \
+    --enable-amd64
+  make
+}
+
+
+check() {
+  cd "${pkgname}-${pkgver}"
+  make check
+}
+
+
+package() {
+  cd "${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+
+  # Install License
+  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
+}



More information about the arch-commits mailing list