diff options
Diffstat (limited to 'testing/tbl')
-rw-r--r-- | testing/tbl/APKBUILD | 40 | ||||
-rw-r--r-- | testing/tbl/tbl-install.patch | 19 |
2 files changed, 0 insertions, 59 deletions
diff --git a/testing/tbl/APKBUILD b/testing/tbl/APKBUILD deleted file mode 100644 index 5860c4c3e3..0000000000 --- a/testing/tbl/APKBUILD +++ /dev/null @@ -1,40 +0,0 @@ -# Maintainer: Natanael Copa <ncopa@alpinelinux.org> -pkgname=tbl -pkgver=0.1.5 -pkgrel=0 -pkgdesc="Utility to format tables for troff" -url="http://tbl.bsd.lv/" -arch="all" -license="ISC" -depends= -makedepends= -install= -subpackages="$pkgname-doc" -source="http://tbl.bsd.lv/snapshots/tbl-$pkgver.tar.gz - tbl-install.patch" - -_builddir="$srcdir"/$pkgname-$pkgver - -prepare() { - cd "$_builddir" - for i in $source; do - case $i in - *.patch) - patch -p1 -i "$srcdir"/$i || return 1 - ;; - esac - done -} - -build() { - cd "$_builddir" - make || return 1 -} - -package() { - cd "$_builddir" - make DESTDIR="$pkgdir" PREFIX=/usr MANDIR=/usr/share/man install -} - -md5sums="633edde9037b0a01b045b05e655ee7c9 tbl-0.1.5.tar.gz -e4f29245b659de9814ff1a7a1c98ffb2 tbl-install.patch" diff --git a/testing/tbl/tbl-install.patch b/testing/tbl/tbl-install.patch deleted file mode 100644 index 72465ea2d8..0000000000 --- a/testing/tbl/tbl-install.patch +++ /dev/null @@ -1,19 +0,0 @@ ---- ./Makefile.orig -+++ ./Makefile -@@ -64,11 +64,11 @@ - install -m 0444 tbl-$(VERSION).md5 $(PREFIX)/snapshots/tbl.md5 - - install: -- mkdir -p $(BINDIR) -- mkdir -p $(MANDIR)/man5 -- $(INSTALL_PROGRAM) tbl $(BINDIR) -- $(INSTALL_MAN) tbl.5 $(MANDIR)/man5 -- $(INSTALL_MAN) tbl.1 $(MANDIR)/man1 -+ mkdir -p $(DESTDIR)$(BINDIR) -+ mkdir -p $(DESTDIR)$(MANDIR)/man5 -+ $(INSTALL_PROGRAM) tbl $(DESTDIR)$(BINDIR) -+ $(INSTALL_MAN) tbl.5 $(DESTDIR)$(MANDIR)/man5 -+ $(INSTALL_MAN) tbl.1 $(DESTDIR)$(MANDIR)/man1 - - main.o: main.c tbl.h - |