mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
33 lines
864 B
Bash
33 lines
864 B
Bash
# $Id: PKGBUILD 52827 2011-07-28 23:21:06Z angvp $
|
|
# # Maintainer: Angel Velasquez <angvp@archlinux.org>
|
|
# Contributor: Geoffroy Carrier <geoffroy.carrier@koon.fr>
|
|
|
|
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
|
# - rebuild for libpng, remove this package when updated in ABS
|
|
|
|
plugrel=1
|
|
|
|
pkgname=lxterminal
|
|
pkgver=0.1.11
|
|
pkgrel=1.1
|
|
pkgdesc="VTE-based terminal emulator (part of LXDE)"
|
|
arch=('i686' 'x86_64')
|
|
license=('GPL2')
|
|
url="http://lxde.org/"
|
|
groups=('lxde')
|
|
depends=('fontconfig' 'libx11' 'glib2' 'vte' 'gtk2')
|
|
makedepends=('pkgconfig' 'intltool')
|
|
source=(http://downloads.sourceforge.net/sourceforge/lxde/${pkgname}-${pkgver}.tar.gz)
|
|
md5sums=('fd9140b45c0f28d021253c4aeb8c4aea')
|
|
|
|
build() {
|
|
cd "$srcdir/$pkgname-$pkgver"
|
|
./configure --sysconfdir=/etc --prefix=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "$srcdir/$pkgname-$pkgver"
|
|
make DESTDIR="$pkgdir" install
|
|
}
|
|
|