mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
25 lines
798 B
Bash
25 lines
798 B
Bash
# $Id: PKGBUILD 28223 2009-02-28 11:55:48Z andyrtr $
|
|
# Maintainer: tobias [tobias at archlinux.org]
|
|
|
|
pkgname=mousepad
|
|
pkgver=0.2.16
|
|
pkgrel=1
|
|
pkgdesc="Simple Text Editor for Xfce4 (based on Gedit)"
|
|
arch=(i686 x86_64)
|
|
groups=('xfce4')
|
|
license="GPL2"
|
|
depends=('libxfcegui4>=4.6.0' 'desktop-file-utils')
|
|
makedepends=('pkgconfig' 'intltool' 'perl')
|
|
options=('!libtool')
|
|
url=('http://www.xfce.org/~benny/apps.html')
|
|
install=${pkgname}.install
|
|
source=(http://www.xfce.org/archive/xfce-4.6.0/src/${pkgname}-${pkgver}.tar.bz2)
|
|
md5sums=('d98854edb76d823ac20b266fdf5a64a1')
|
|
|
|
build() {
|
|
cd ${srcdir}/${pkgname}-${pkgver}
|
|
./configure --prefix=/usr --sysconfdir=/etc --libexecdir=/usr/lib/xfce4 \
|
|
--localstatedir=/var --disable-static
|
|
make || return 1
|
|
make DESTDIR=${pkgdir} install || return 1
|
|
}
|