diff options
author | Nicolas Reynolds <fauno@kiwwwi.com.ar> | 2012-02-19 20:37:04 -0300 |
---|---|---|
committer | Nicolas Reynolds <fauno@kiwwwi.com.ar> | 2012-02-19 20:37:04 -0300 |
commit | a379247a5f187c1608664530e9ff85663eff3201 (patch) | |
tree | 3a49e87e7419c4aca35d1f4f2e591d12c3821c78 /community/tint2 | |
parent | 1bf114d00280c9cfb2075d30830fdf86adb30951 (diff) | |
parent | 81ee1980feda43043eaebae2c596ae116a21f6e5 (diff) |
Merge branch 'master' of ssh://vparabola/home/parabola/abslibre-pre-mips64el
Conflicts:
community/cuetools/PKGBUILD
community/ekg2/PKGBUILD
community/libcss/PKGBUILD
community/libwapcaplet/PKGBUILD
community/lxrandr/PKGBUILD
community/menu-cache/PKGBUILD
community/mumble/PKGBUILD
community/ngircd/PKGBUILD
community/oidentd/PKGBUILD
community/openbox/PKGBUILD
community/preload/PKGBUILD
community/xdg-user-dirs/PKGBUILD
extra/gdome2/PKGBUILD
extra/libdiscid/PKGBUILD
extra/pymad/PKGBUILD
extra/qhull/PKGBUILD
extra/speech-dispatcher/PKGBUILD
multilib/lib32-gmp/PKGBUILD
testing/xorg-server/PKGBUILD
Diffstat (limited to 'community/tint2')
-rw-r--r-- | community/tint2/PKGBUILD | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/community/tint2/PKGBUILD b/community/tint2/PKGBUILD index c8562dd4b..c45639ddb 100644 --- a/community/tint2/PKGBUILD +++ b/community/tint2/PKGBUILD @@ -1,9 +1,11 @@ +# $Id: PKGBUILD 64903 2012-02-18 20:04:04Z bpiotrowski $ +# Maintainer: Bartłomiej Piotrowski <nospam@bpiotrowski.pl> # Contributor: Blue Peppers <bluepeppers@archlinux.us> -# Maintainer: Stefan Husmann< stefan-husmann@t-online.de> +# Contributor: Stefan Husmann< stefan-husmann@t-online.de> pkgname=tint2 pkgver=0.11 -pkgrel=4 +pkgrel=5 pkgdesc="A basic, good-looking task manager for WMs" arch=('i686' 'x86_64' 'mips64el') url="http://code.google.com/p/tint2/" @@ -20,7 +22,7 @@ md5sums=('6fc5731e7425125fa84a2add5cef4bff' '6cfcad028f1bd2f69812167f5395f890') build() { - cd $srcdir/$pkgname-${pkgver} + cd "$srcdir/$pkgname-${pkgver}" # add support for power_now battery attribute (fixes FS#21954) patch -Np0 -i ../add-power-now-support.patch @@ -34,7 +36,8 @@ build() { cmake -DCMAKE_INSTALL_PREFIX=/usr ../ make } + package() { - cd $srcdir/$pkgname-${pkgver}/build - make DESTDIR=$pkgdir install + cd "$srcdir/$pkgname-${pkgver}/build" + make DESTDIR="$pkgdir" install } |