diff options
Diffstat (limited to 'community/notion/PKGBUILD')
-rw-r--r-- | community/notion/PKGBUILD | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/community/notion/PKGBUILD b/community/notion/PKGBUILD index 5c6b7b0d6..c29a0054a 100644 --- a/community/notion/PKGBUILD +++ b/community/notion/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 57592 2011-10-31 08:12:46Z spupykin $ +# $Id: PKGBUILD 70297 2012-05-03 22:44:04Z spupykin $ # Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> # Maintainer: Eugen Zagorodniy e dot zagorodniy at gmail dot com # Contributor: aunoor pkgname=notion -pkgver=20111031 +pkgver=20120504 pkgrel=1 pkgdesc="Tabbed tiling, window manager. Fork of Ion3" url="http://sourceforge.net/projects/notion/" @@ -25,6 +25,7 @@ _gitroots=("git://notion.git.sourceforge.net/gitroot/notion/notion" "git://notion.git.sourceforge.net/gitroot/notion/mod_xrandr" "git://notion.git.sourceforge.net/gitroot/notion/contrib") #source=(https://downloads.sourceforge.net/project/notion/notion-3-2011102900-src.tar.bz2) +md5sums=() build() { cd ${srcdir} @@ -66,9 +67,15 @@ build() { done # build doc and modules - for i in mod_xinerama mod_xkbevents mod_xrandr notion-doc; do + for i in mod_xinerama mod_xkbevents mod_xrandr; do (cd $i && make -j1 TOPDIR=.. all) done + + mkdir notion-doc/notionconf-onepage + mkdir notion-doc/notionnotes-onepage + (cd notion-doc && make -j1 TOPDIR=.. all) || true + sed -i 's|mod_query.exec_on_merr|mod\\_query.exec\\_on\\_merr|g' notion-doc/ioncore.exports + (cd notion-doc && make -j1 TOPDIR=.. all) } package() { |