summaryrefslogtreecommitdiff
path: root/community/i3-wm
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2011-08-02 04:35:55 +0000
committerroot <root@rshg054.dnsready.net>2011-08-02 04:35:55 +0000
commitbf35116f9d203dcafce808a6c7b3dd5a0db8afbc (patch)
treef9551a1d3c67d2113cc5fc5c3f8816bcbaad0540 /community/i3-wm
parent1173ff2dba7d0fd3c45f170a5e353a76b7a5da2f (diff)
Tue Aug 2 04:35:55 UTC 2011
Diffstat (limited to 'community/i3-wm')
-rw-r--r--community/i3-wm/PKGBUILD39
1 files changed, 22 insertions, 17 deletions
diff --git a/community/i3-wm/PKGBUILD b/community/i3-wm/PKGBUILD
index 4680f393c..f63ac08fd 100644
--- a/community/i3-wm/PKGBUILD
+++ b/community/i3-wm/PKGBUILD
@@ -1,48 +1,53 @@
-# $Id: PKGBUILD 46517 2011-05-08 15:05:08Z ttopper $
+# $Id: PKGBUILD 53231 2011-08-01 21:41:41Z ttopper $
# Maintainer: Thorsten Töpper <atsutane-tu@freethoughts.de>
pkgname=i3-wm
_pkgsourcename=i3
-pkgver=3.e_bf3
-_pkgver=3.e-bf3
+pkgver=4.0.1
pkgrel=1
pkgdesc="An improved dynamic tiling window manager"
arch=('i686' 'x86_64')
-url="http://i3.zekjur.net/"
+url="http://i3wm.org/"
license=('BSD')
-replaces=("i3")
+replaces=("i3" "i3bar")
groups=("i3")
-depends=('libx11' 'xcb-util' 'libev' 'yajl')
+depends=('libxcursor' 'xcb-util' 'libev' 'yajl')
makedepends=('bison' 'flex')
optdepends=('rxvt-unicode: The terminal emulator used in the default config.'
- 'dmenu: As menu.')
+ 'dmenu: As menu.'
+ 'perl: To migrate your configuration to v4 format.')
options=('docs' '!strip')
-source=(http://i3.zekjur.net/downloads/${_pkgsourcename}-${_pkgver}.tar.bz2)
-md5sums=('07a66e04bc754d0c16b033ed9df80c65')
+source=(http://i3wm.org/downloads/${_pkgsourcename}-${pkgver}.tar.bz2)
+md5sums=('87c5961589068269da611b79064c628e')
build() {
- cd "$srcdir/$_pkgsourcename-$_pkgver"
-
+ cd "$srcdir/$_pkgsourcename-$pkgver"
+
make
}
package() {
- cd "$srcdir/$_pkgsourcename-$_pkgver"
+ cd "$srcdir/$_pkgsourcename-$pkgver"
make DESTDIR="$pkgdir/" install
install -Dm644 man/i3.1 \
${pkgdir}/usr/share/man/man1/i3.1
- install -Dm644 man/i3-msg.1 \
- ${pkgdir}/usr/share/man/man1/i3-msg.1
+ install -Dm644 i3bar/doc/i3bar.1 \
+ ${pkgdir}/usr/share/man/man1/i3bar.1
+ install -Dm644 man/i3-config-wizard.1 \
+ ${pkgdir}/usr/share/man/man1/i3-config-wizard.1
install -Dm644 man/i3-input.1 \
${pkgdir}/usr/share/man/man1/i3-input.1
+ install -Dm644 man/i3-msg.1 \
+ ${pkgdir}/usr/share/man/man1/i3-msg.1
+ install -Dm644 man/i3-migrate-config-to-v4.1 \
+ ${pkgdir}/usr/share/man/man1/i3-migrate-config-to-v4.1
+ install -Dm644 man/i3-nagbar.1 \
+ ${pkgdir}/usr/share/man/man1/i3-nagbar.1
install -Dm644 LICENSE \
${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
- #i3-wsbar will be provided by another package
- rm ${pkgdir}/usr/bin/i3-wsbar
-
make clean
}