diff options
Diffstat (limited to 'community/tktheme/PKGBUILD')
-rw-r--r-- | community/tktheme/PKGBUILD | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/community/tktheme/PKGBUILD b/community/tktheme/PKGBUILD index 5f9a7a64b..75e103881 100644 --- a/community/tktheme/PKGBUILD +++ b/community/tktheme/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 20038 2010-07-02 09:20:20Z spupykin $ +# $Id: PKGBUILD 65407 2012-02-21 03:28:00Z spupykin $ # Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> # Contributor: slubman <slubman@slubman.net> pkgname=tktheme pkgver=0.23 -pkgrel=6 +pkgrel=7 pkgdesc="A library to allow Tkabber docking in the system tray." arch=('i686' 'x86_64' 'mips64el') depends=('tk' 'libxpm' 'libxmu') @@ -16,9 +16,9 @@ md5sums=('121c335e3b3764cbd04eea68b6a66dd3') build() { cd $srcdir/Tk_Theme-23 tclsh configure - make || return 1 - mkdir -p $pkgdir/usr/lib/tktheme && \ - cp theme.so $pkgdir/usr/lib/tktheme/ && \ - cp pkgIndex.tcl $pkgdir/usr/lib/tktheme/ && \ + make + mkdir -p $pkgdir/usr/lib/tktheme + cp theme.so $pkgdir/usr/lib/tktheme/ + cp pkgIndex.tcl $pkgdir/usr/lib/tktheme/ sed -i 's|ifneeded Tk_Theme 20|ifneeded Tk_Theme 23|' $pkgdir/usr/lib/tktheme/pkgIndex.tcl } |