mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
24 lines
832 B
Bash
24 lines
832 B
Bash
|
# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
|
||
|
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
|
||
|
# Contributor: Pavel Borzenkov <pavel.borzenkov@gmail.com>
|
||
|
|
||
|
pkgname=tksystray
|
||
|
pkgver=0.1
|
||
|
pkgrel=3
|
||
|
pkgdesc="tksystray is compatible with freedesktop.org standarts systray for Tk"
|
||
|
arch=('i686' 'x86_64')
|
||
|
url="http://tkabber.jabber.ru/tksystray"
|
||
|
license=("GPL")
|
||
|
depends=(tcl tk imlib)
|
||
|
source=(http://sgolovan.jabber.ru/debian/pool/main/tcl/tksystray/${pkgname}_$pkgver.orig.tar.gz)
|
||
|
md5sums=('d1784d2f786304bd6eaa82512fd5cf1c')
|
||
|
|
||
|
build() {
|
||
|
cd $startdir/src/$pkgname-$pkgver
|
||
|
./configure --prefix=/usr --with-tcl=/usr/lib --with-tk=/usr/lib
|
||
|
make || return 1
|
||
|
mkdir -p $startdir/pkg/usr/lib/$pkgname-$pkgver
|
||
|
cp -rf libtray.so $startdir/pkg/usr/lib/$pkgname-$pkgver
|
||
|
cp -rf pkgIndex.tcl $startdir/pkg/usr/lib/$pkgname-$pkgver
|
||
|
}
|