diff options
author | James Meyer <james.meyer@operamail.com> | 2008-10-04 04:23:24 (GMT) |
---|---|---|
committer | James Meyer <james.meyer@operamail.com> | 2008-10-04 04:23:24 (GMT) |
commit | 05598ad0bc67141ff1742c13b4db0765f030be4f (patch) | |
tree | 703bbbd7317d94bc52d993f5d4626e6aca777923 /abs/chroot-devel/leafpad/PKGBUILD | |
parent | db40f2ab304cc32d9a69ee215727c8663b757c53 (diff) | |
download | linhes_pkgbuild-05598ad0bc67141ff1742c13b4db0765f030be4f.zip linhes_pkgbuild-05598ad0bc67141ff1742c13b4db0765f030be4f.tar.gz linhes_pkgbuild-05598ad0bc67141ff1742c13b4db0765f030be4f.tar.bz2 |
adding leafpad, simple text editor for inside the chroot
Diffstat (limited to 'abs/chroot-devel/leafpad/PKGBUILD')
-rw-r--r-- | abs/chroot-devel/leafpad/PKGBUILD | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/abs/chroot-devel/leafpad/PKGBUILD b/abs/chroot-devel/leafpad/PKGBUILD new file mode 100644 index 0000000..874ee94 --- /dev/null +++ b/abs/chroot-devel/leafpad/PKGBUILD @@ -0,0 +1,23 @@ +# $Id: PKGBUILD 356 2008-04-18 22:56:27Z aaron $ +# Maintainer: Aaron Griffin <aaron@archlinux.org> +# Contributor: Link Dupont <link@subpop.net> + +pkgname=leafpad +pkgver=0.8.14 +pkgrel=1 +pkgdesc="A notepad clone for GTK+ 2.0" +arch=(i686 x86_64) +url="http://tarot.freeshell.org/leafpad/" +license=('GPL') +depends=(gtk2) +makedepends=(perlxml) +source=(http://download.savannah.gnu.org/releases/$pkgname/$pkgname-$pkgver.tar.gz) +md5sums=('5f2abed8c880886e8aeb7e1a8d302e4c') + +build() +{ + cd $startdir/src/$pkgname-$pkgver + ./configure --prefix=/usr --enable-chooser || return 1 + make || return 1 + make DESTDIR=$startdir/pkg install || return 1 +} |