[arch-commits] Commit in (modest modest/repos modest/trunk modest/trunk/PKGBUILD)
Robin Broda
coderobe at archlinux.org
Thu Oct 18 21:06:48 UTC 2018
Date: Thursday, October 18, 2018 @ 21:06:48
Author: coderobe
Revision: 396133
add modest
Added:
modest/
modest/repos/
modest/trunk/
modest/trunk/PKGBUILD
----------+
PKGBUILD | 33 +++++++++++++++++++++++++++++++++
1 file changed, 33 insertions(+)
Added: modest/trunk/PKGBUILD
===================================================================
--- modest/trunk/PKGBUILD (rev 0)
+++ modest/trunk/PKGBUILD 2018-10-18 21:06:48 UTC (rev 396133)
@@ -0,0 +1,33 @@
+# Maintainer: Robin Broda <robin at broda dot me>
+
+_commit='d021b907517d0be30bd709dc9649bc9b54e4b4f4'
+
+pkgname=modest
+pkgver=0.0.6.${_commit:0:7}
+pkgrel=1
+pkgdesc='Fast HTML renderer implemented as a pure C99 library with no outside dependencies'
+arch=('x86_64')
+url='https://github.com/lexborisov/modest'
+license=('LGPL2.1')
+makedepends=('git')
+source=("git+${url}#commit=${_commit}")
+md5sums=('SKIP')
+provides=('mycore' 'mycss' 'myencoding' 'myfont' 'myhtml' 'myunicode' 'myurl')
+
+build() {
+ cd "${pkgname}"
+
+ make CFLAGS="$CFLAGS -Wno-variadic-macros" prefix="/usr"
+}
+
+check() {
+ cd "${pkgname}"
+
+ make test
+}
+
+package() {
+ cd "${pkgname}"
+
+ make DESTDIR="${pkgdir}/" prefix="/usr" install
+}
More information about the arch-commits
mailing list