diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2009-11-09 16:38:03 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2009-11-09 16:38:03 +0000 |
commit | 18d5c5a5355ca8ce916bb2c778311234d766087d (patch) | |
tree | ce04dac99aa323ef4808303e8c21c24d747f823d /main | |
parent | 9ecab053ef4e82a78afcff9e8e0581390b436902 (diff) | |
download | aports-18d5c5a5355ca8ce916bb2c778311234d766087d.tar.bz2 aports-18d5c5a5355ca8ce916bb2c778311234d766087d.tar.xz |
main/tmux: upgrade to 1.1
Diffstat (limited to 'main')
-rw-r--r-- | main/tmux/APKBUILD | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/main/tmux/APKBUILD b/main/tmux/APKBUILD index 15ff11ef4..b60bb5b76 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=1.0 +pkgver=1.1 pkgrel=0 pkgdesc="Tool to control multiple terminals from a single terminal" url="http://tmux.sourceforge.net/" @@ -17,6 +17,10 @@ build() { ./configure make || return 1 +} + +package() { + cd "$srcdir/$pkgname-$pkgver" make DESTDIR="$pkgdir" PREFIX=/usr install # the configure script/makefile does not give us possibility to # change mandir @@ -24,4 +28,4 @@ build() { mv "$pkgdir"/usr/man "$pkgdir"/usr/share/ } -md5sums="716b12d9ea052f57d917bf2869d419df tmux-1.0.tar.gz" +md5sums="faf2fc52ac3ae63d899f6fece2c112cd tmux-1.1.tar.gz" |