diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2009-09-23 15:00:43 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2009-09-23 15:00:43 +0000 |
commit | fec0c753f8a3e5eb5859e406d89c482eff52fa21 (patch) | |
tree | 726917aa6ee13c43b8d3c4a2064d9f897013aca8 /main/tmux/APKBUILD | |
parent | eba574831986ed9a15422d09aa2d145586ed0adc (diff) | |
download | aports-fec0c753f8a3e5eb5859e406d89c482eff52fa21.tar.bz2 aports-fec0c753f8a3e5eb5859e406d89c482eff52fa21.tar.xz |
main/tmux: upgrade to 1.0
Diffstat (limited to 'main/tmux/APKBUILD')
-rw-r--r-- | main/tmux/APKBUILD | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/main/tmux/APKBUILD b/main/tmux/APKBUILD index 7edc932264..15ff11ef41 100644 --- a/main/tmux/APKBUILD +++ b/main/tmux/APKBUILD @@ -1,7 +1,7 @@ # Contributor: Natanael Copa <ncopa@alpinelinux.org> # Maintainer: Natanael Copa <ncopa@alpinelinux.org> pkgname=tmux -pkgver=0.9 +pkgver=1.0 pkgrel=0 pkgdesc="Tool to control multiple terminals from a single terminal" url="http://tmux.sourceforge.net/" @@ -10,18 +10,18 @@ depends="" makedepends="ncurses-dev" install= subpackages="$pkgname-doc" -source="http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz - build.patch" +source="http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz" build() { cd "$srcdir/$pkgname-$pkgver" - patch -p1 < ../build.patch || return 1 ./configure make || return 1 make DESTDIR="$pkgdir" PREFIX=/usr install - + # the configure script/makefile does not give us possibility to + # change mandir + mkdir "$pkgdir"/usr/share + mv "$pkgdir"/usr/man "$pkgdir"/usr/share/ } -md5sums="2d1df646a6977bb7d9b20e53770d5593 tmux-0.9.tar.gz -373cabbc35601c3ee71fde0877f5fe83 build.patch" +md5sums="716b12d9ea052f57d917bf2869d419df tmux-1.0.tar.gz" |