diff options
Diffstat (limited to 'community/lxterminal/PKGBUILD')
-rw-r--r-- | community/lxterminal/PKGBUILD | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/community/lxterminal/PKGBUILD b/community/lxterminal/PKGBUILD new file mode 100644 index 000000000..42952a457 --- /dev/null +++ b/community/lxterminal/PKGBUILD @@ -0,0 +1,23 @@ +# $Id: PKGBUILD 25770 2010-09-11 01:42:59Z angvp $ +# Maintainer: Angel 'angvp' Velasquez <angvp[at]archlinux.com.ve> +# Contributor: Geoffroy Carrier <geoffroy.carrier@koon.fr> +pkgname=lxterminal +pkgver=0.1.9 +pkgrel=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) + +build() { + cd "$srcdir/$pkgname-$pkgver" + ./configure --sysconfdir=/etc --prefix=/usr || return 1 + make || return 1 + make DESTDIR="$pkgdir" install || return 1 +} + +md5sums=('cb10cc667611dce3c141294712049c43') |