diff options
author | root <root@rshg054.dnsready.net> | 2013-08-13 01:33:19 -0700 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2013-08-13 01:33:19 -0700 |
commit | 7a65a910b77ad191d69881098c47f9b0c852d92e (patch) | |
tree | 9564e611af1442f8952a8cbddb3b0ad25ed71aab /community/tktheme | |
parent | 60da6abff6c9577a783d72865f11de7a585e912e (diff) |
Tue Aug 13 01:31:08 PDT 2013
Diffstat (limited to 'community/tktheme')
-rw-r--r-- | community/tktheme/PKGBUILD | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/community/tktheme/PKGBUILD b/community/tktheme/PKGBUILD new file mode 100644 index 000000000..869dfe6ee --- /dev/null +++ b/community/tktheme/PKGBUILD @@ -0,0 +1,24 @@ +# $Id: PKGBUILD 81611 2012-12-25 00:34:17Z foutrelis $ +# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> +# Contributor: slubman <slubman@slubman.net> + +pkgname=tktheme +pkgver=0.23 +pkgrel=8 +pkgdesc="A library to allow Tkabber docking in the system tray." +arch=('i686' 'x86_64') +depends=('tk' 'libxpm' 'libxmu') +license=("GPL") +source=(http://tkabber.jabber.ru/files/other/Tk_Theme-23.tgz) +url="http://tkabber.jabber.ru" +md5sums=('121c335e3b3764cbd04eea68b6a66dd3') + +build() { + cd $srcdir/Tk_Theme-23 + tclsh configure + 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 +} |