mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
32 lines
816 B
Bash
32 lines
816 B
Bash
# $Id: PKGBUILD 56901 2011-10-16 07:43:53Z bpiotrowski $
|
|
# Maintainer: Angel Velasquez <angvp@archlinux.org>
|
|
# Contributor: Geoffroy Carrier <geoffroy.carrier@koon.fr>
|
|
|
|
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
|
# - rebuild for libpng - remove when bumped upstream
|
|
|
|
plugrel=1
|
|
|
|
pkgname=lxtask
|
|
pkgver=0.1.4
|
|
pkgrel=3.1
|
|
pkgdesc="Task manager of the LXDE Desktop"
|
|
arch=('i686' 'x86_64')
|
|
license=('GPL2')
|
|
url="http://lxde.org/"
|
|
groups=('lxde')
|
|
depends=('gtk2')
|
|
makedepends=('pkgconfig' 'intltool')
|
|
source=(http://downloads.sourceforge.net/sourceforge/lxde/${pkgname}-${pkgver}.tar.gz)
|
|
md5sums=('c4ab47d03d41a88696d64d3f1e78cf7f')
|
|
|
|
build() {
|
|
cd "$srcdir/$pkgname-$pkgver"
|
|
autoreconf
|
|
./configure --sysconfdir=/etc --prefix=/usr
|
|
make
|
|
}
|
|
package() {
|
|
cd "$srcdir/$pkgname-$pkgver"
|
|
make DESTDIR="$pkgdir" install
|
|
}
|