From 3830c6fe4bfecb2fbe07bf051b1274c9d2f8ccb8 Mon Sep 17 00:00:00 2001 From: Jakub Jirutka Date: Tue, 7 Mar 2017 01:01:51 +0100 Subject: community/tclap: move from testing --- community/tclap/APKBUILD | 35 +++++++++++++++++++++++++++++++++++ community/tclap/skip-docs.patch | 23 +++++++++++++++++++++++ 2 files changed, 58 insertions(+) create mode 100644 community/tclap/APKBUILD create mode 100644 community/tclap/skip-docs.patch (limited to 'community') diff --git a/community/tclap/APKBUILD b/community/tclap/APKBUILD new file mode 100644 index 0000000000..c86a6e3e53 --- /dev/null +++ b/community/tclap/APKBUILD @@ -0,0 +1,35 @@ +# Contributor: Jakub Jirutka +# Maintainer: Jakub Jirutka +pkgname=tclap +pkgver=1.2.1 +pkgrel=0 +pkgdesc="Templatized C++ Command Line Parser" +url="http://tclap.sourceforge.net" +arch="noarch" +license="MIT" +subpackages="$pkgname-dev" +source="https://sourceforge.net/projects/tclap/files/$pkgname-$pkgver.tar.gz + skip-docs.patch" +builddir="$srcdir/$pkgname-$pkgver" + +build() { + cd "$builddir" + ./configure \ + --build=$CBUILD \ + --host=$CHOST \ + --prefix=/usr \ + && make +} + +check() { + cd "$builddir" + make check +} + +package() { + cd "$builddir" + make DESTDIR="$pkgdir" install +} + +sha512sums="8bd6ee724600880840048c7b36f02d31b1aa4910b17f80fb04aef89b1f1917856d9979ec488edbd457b66d9d689aea97540abb842a8b902bbd75c66a6e07b9b1 tclap-1.2.1.tar.gz +d88b298d5de2c1e8b628babc75b0a075b1c359c76b67d068e233e248c3b08dc7374865c1e725e4945fa900647d7bbf80cdaf7cbef2f198813ffa69844d04ee0b skip-docs.patch" diff --git a/community/tclap/skip-docs.patch b/community/tclap/skip-docs.patch new file mode 100644 index 0000000000..0f5b5b4224 --- /dev/null +++ b/community/tclap/skip-docs.patch @@ -0,0 +1,23 @@ +Make fails to install docs, so just skip them. +--- a/Makefile.am ++++ b/Makefile.am +@@ -1,7 +1,7 @@ + + ACLOCAL_AMFLAGS = -I config + +-SUBDIRS = include examples docs tests msc config ++SUBDIRS = include examples tests msc config + + pkgconfigdir = $(libdir)/pkgconfig + pkgconfig_DATA = $(PACKAGE).pc +--- a/Makefile.in ++++ b/Makefile.in +@@ -173,7 +173,7 @@ + top_builddir = @top_builddir@ + top_srcdir = @top_srcdir@ + ACLOCAL_AMFLAGS = -I config +-SUBDIRS = include examples docs tests msc config ++SUBDIRS = include examples tests msc config + pkgconfigdir = $(libdir)/pkgconfig + pkgconfig_DATA = $(PACKAGE).pc + EXTRA_DIST = $(PACKAGE).pc.in -- cgit v1.2.3