mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-18 22:54:00 +00:00
24 lines
662 B
Bash
24 lines
662 B
Bash
# $Id: PKGBUILD 50418 2009-08-26 08:27:45Z allan $
|
|
# Maintainer: Aaron Griffin <aaron@archlinux.org>
|
|
# Contributor: Link Dupont <link@subpop.net>
|
|
|
|
pkgname=leafpad
|
|
pkgver=0.8.16
|
|
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')
|
|
install=leafpad.install
|
|
source=(http://download.savannah.gnu.org/releases/$pkgname/$pkgname-$pkgver.tar.gz)
|
|
md5sums=('65c17a9ed866b059856b5513f5eaae17')
|
|
|
|
build()
|
|
{
|
|
cd $srcdir/$pkgname-$pkgver
|
|
./configure --prefix=/usr --enable-chooser || return 1
|
|
make || return 1
|
|
make DESTDIR=$pkgdir install || return 1
|
|
}
|