diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2009-07-24 08:01:31 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2009-07-24 08:01:31 +0000 |
commit | b70981b68efcce5256eb11c6cd26ae123b10b6ea (patch) | |
tree | a38be6efae5e2ba15c2e839504632f9b7bfd5f91 /main/tmux | |
parent | 2b4df81538b8398442d5296650905c70341dd8d3 (diff) | |
download | aports-b70981b68efcce5256eb11c6cd26ae123b10b6ea.tar.bz2 aports-b70981b68efcce5256eb11c6cd26ae123b10b6ea.tar.xz |
moved extra/* to main/
and fixed misc build issues
Diffstat (limited to 'main/tmux')
-rw-r--r-- | main/tmux/APKBUILD | 27 | ||||
-rw-r--r-- | main/tmux/build.patch | 23 |
2 files changed, 50 insertions, 0 deletions
diff --git a/main/tmux/APKBUILD b/main/tmux/APKBUILD new file mode 100644 index 0000000000..7edc932264 --- /dev/null +++ b/main/tmux/APKBUILD @@ -0,0 +1,27 @@ +# Contributor: Natanael Copa <ncopa@alpinelinux.org> +# Maintainer: Natanael Copa <ncopa@alpinelinux.org> +pkgname=tmux +pkgver=0.9 +pkgrel=0 +pkgdesc="Tool to control multiple terminals from a single terminal" +url="http://tmux.sourceforge.net/" +license="BSD" +depends="" +makedepends="ncurses-dev" +install= +subpackages="$pkgname-doc" +source="http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz + build.patch" + +build() { + cd "$srcdir/$pkgname-$pkgver" + patch -p1 < ../build.patch || return 1 + + ./configure + make || return 1 + make DESTDIR="$pkgdir" PREFIX=/usr install + +} + +md5sums="2d1df646a6977bb7d9b20e53770d5593 tmux-0.9.tar.gz +373cabbc35601c3ee71fde0877f5fe83 build.patch" diff --git a/main/tmux/build.patch b/main/tmux/build.patch new file mode 100644 index 0000000000..b16c4f4cab --- /dev/null +++ b/main/tmux/build.patch @@ -0,0 +1,23 @@ +diff -ru tmux-0.9.orig/GNUmakefile tmux-0.9/GNUmakefile +--- tmux-0.9.orig/GNUmakefile 2009-07-09 08:11:37.000000000 +0000 ++++ tmux-0.9/GNUmakefile 2009-07-09 08:12:09.000000000 +0000 +@@ -53,5 +53,5 @@ + install: all + $(INSTALLDIR) $(DESTDIR)$(PREFIX)/bin + $(INSTALLBIN) tmux $(DESTDIR)$(PREFIX)/bin/tmux +- $(INSTALLDIR) $(DESTDIR)$(PREFIX)/man/man1 +- $(INSTALLMAN) tmux.1 $(DESTDIR)$(PREFIX)/man/man1/tmux.1 ++ $(INSTALLDIR) $(DESTDIR)$(PREFIX)/share/man/man1 ++ $(INSTALLMAN) tmux.1 $(DESTDIR)$(PREFIX)/share/man/man1/tmux.1 +diff -ru tmux-0.9.orig/configure tmux-0.9/configure +--- tmux-0.9.orig/configure 2009-07-09 08:11:37.000000000 +0000 ++++ tmux-0.9/configure 2009-07-09 08:12:20.000000000 +0000 +@@ -82,7 +82,7 @@ + compat/strtonum.c \ + compat/getopt.c \ + compat/vis.c +-CFLAGS+= -D_GNU_SOURCE -D_POSIX_SOURCE ++CFLAGS+= -D_GNU_SOURCE -D_POSIX_SOURCE -std=c99 + LIBS+= -lcrypt -lutil + EOF + ;; |