From edf2b9b7696f29bccb429176b98fc52ce2823449 Mon Sep 17 00:00:00 2001 From: Andreas Grapentin Date: Sun, 17 Feb 2019 22:32:55 +0100 Subject: libre/sh-roundup: unused. removed --- libre/sh-roundup/PKGBUILD | 35 ----------------------------------- libre/sh-roundup/makefile-fix.patch | 11 ----------- 2 files changed, 46 deletions(-) delete mode 100644 libre/sh-roundup/PKGBUILD delete mode 100644 libre/sh-roundup/makefile-fix.patch (limited to 'libre') diff --git a/libre/sh-roundup/PKGBUILD b/libre/sh-roundup/PKGBUILD deleted file mode 100644 index cc614c0d9..000000000 --- a/libre/sh-roundup/PKGBUILD +++ /dev/null @@ -1,35 +0,0 @@ -# Maintainer: Luke Shumaker -# Contributor: Omar Vega Ramos - -pkgname=sh-roundup -_pkgname="roundup" -pkgver=0.0.6 -pkgrel=1 -pkgdesc='A unit testing framework for POSIX shell' -arch=('any') -url="http://bmizerany.github.io/roundup/" -license=("custom:MIT") -depends=(sh) -makedepends=(ruby-ronn) - -source=("${pkgname}-${pkgver}.tar.gz::https://github.com/bmizerany/$_pkgname/archive/v$pkgver.tar.gz" - 'makefile-fix.patch') -md5sums=('607023b4fe4e42fdc2f0cb14b4138b2e' - '9efcd83d666c1e84302fe611610c60fa') - -prepare() { - cd "$srcdir/$_pkgname-$pkgver" - patch -i ../makefile-fix.patch Makefile -} - -build() { - cd "$srcdir/$_pkgname-$pkgver" - ./configure --prefix="$pkgdir"/usr - make -j1 build man -} - -package() { - cd "$srcdir/$_pkgname-$pkgver" - make -j1 install install-man - install -Dm644 COPYING "$pkgdir"/usr/share/licenses/$pkgname/COPYING -} diff --git a/libre/sh-roundup/makefile-fix.patch b/libre/sh-roundup/makefile-fix.patch deleted file mode 100644 index b97bebf23..000000000 --- a/libre/sh-roundup/makefile-fix.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- Makefile.orig -+++ Makefile -@@ -79,7 +79,7 @@ - chmod 0755 $(bindir)/roundup - - install-man: man -- -for i in {1..9} ; do cp *.$$i $(mandir)/man$$i 2>/dev/null ; done -+ shopt -s nullglob; for file in *.{1..9}; do install -Dm644 $$file $(mandir)/man$${file##*.}/$${file##*/}; done - - .PHONY: pages - pages : doc -- cgit v1.2.3