[arch-commits] Commit in libemf/repos (community-x86_64 community-x86_64/PKGBUILD)
Daniel Bermond
dbermond at archlinux.org
Thu Oct 3 11:37:51 UTC 2019
Date: Thursday, October 3, 2019 @ 11:37:50
Author: dbermond
Revision: 512484
archrelease: copy trunk to community-x86_64
Added:
libemf/repos/community-x86_64/
libemf/repos/community-x86_64/PKGBUILD
(from rev 512483, libemf/trunk/PKGBUILD)
----------+
PKGBUILD | 34 ++++++++++++++++++++++++++++++++++
1 file changed, 34 insertions(+)
Copied: libemf/repos/community-x86_64/PKGBUILD (from rev 512483, libemf/trunk/PKGBUILD)
===================================================================
--- community-x86_64/PKGBUILD (rev 0)
+++ community-x86_64/PKGBUILD 2019-10-03 11:37:50 UTC (rev 512484)
@@ -0,0 +1,34 @@
+# Maintainer : Daniel Bermond <dbermond at archlinux.org>
+# Contributor: lily wilson <hotaru at thinkindifferent.net>
+
+pkgname=libemf
+pkgver=1.0.11
+pkgrel=2
+pkgdesc='Library implementation of ECMA-234 API for the generation of enhanced metafiles'
+arch=('x86_64')
+url='http://libemf.sourceforge.net/'
+license=('GPL' 'LGPL')
+depends=('gcc-libs')
+source=("https://sourceforge.net/projects/libemf/files/libemf/${pkgver}/${pkgname}-${pkgver}.tar.gz")
+sha256sums=('741a611ce1e9636b4f22e1cc4436b6e08c972b1464affa85b46ebd7d9441b6c4')
+
+build() {
+ cd "${pkgname}-${pkgver}"
+
+ ./configure \
+ --prefix='/usr' \
+ --enable-static='no' \
+ --enable-shared='yes' \
+ --enable-threads \
+ --enable-editing
+
+ make
+}
+
+check() {
+ make -C "${pkgname}-${pkgver}" check
+}
+
+package() {
+ make -C "${pkgname}-${pkgver}" DESTDIR="$pkgdir" install
+}
More information about the arch-commits
mailing list