mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
26 lines
665 B
Bash
26 lines
665 B
Bash
# Contributor: Blue Peppers <bluepeppers@archlinux.us>
|
|
# Maintainer: Stefan Husmann< stefan-husmann@t-online.de>
|
|
|
|
pkgname=tint2
|
|
pkgver=0.7.1
|
|
pkgrel=3
|
|
pkgdesc="A basic, good-looking task manager for WMs"
|
|
arch=('i686' 'x86_64')
|
|
url="http://code.google.com/p/tint2/"
|
|
license=('GPL2')
|
|
conflicts=('ttm-svn' 'tint2-svn' 'tint')
|
|
depends=('libxinerama' 'pango' 'imlib2')
|
|
provides=('tint')
|
|
source=("http://$pkgname.googlecode.com/files/$pkgname-$pkgver.tar.gz")
|
|
md5sums=('b7a740550a82093d4d0d8143499f3f13')
|
|
|
|
build() {
|
|
cd $srcdir/$pkgname-$pkgver
|
|
./configure --prefix=/usr --sysconfdir=/etc || return 1
|
|
make || return 1
|
|
make DESTDIR=$pkgdir install || return 1
|
|
}
|
|
|
|
|
|
|
|
|