mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
23 lines
828 B
Bash
23 lines
828 B
Bash
# $Id: PKGBUILD 32306 2009-03-30 04:32:07Z eric $
|
|
# Maintainer: eric <eric@archlinux.org>
|
|
# Contributor: Damir Perisa <damir.perisa@bluewin.ch>
|
|
|
|
pkgname=cssed
|
|
pkgver=0.4.0
|
|
pkgrel=2
|
|
pkgdesc="A GTK2 based Cascading Style Sheets (CSS) editor"
|
|
arch=('i686' 'x86_64')
|
|
url="http://cssed.sourceforge.net/"
|
|
license=('GPL')
|
|
depends=('gtk2' 'libxml2' 'desktop-file-utils')
|
|
install=$pkgname.install
|
|
source=(http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz $pkgname.desktop)
|
|
md5sums=('ff7c818d1f819b7d76b4f714be64e08e' '90003378b6d74a7b85b22de67c6aa893')
|
|
|
|
build() {
|
|
cd $srcdir/$pkgname-$pkgver
|
|
./configure --prefix=/usr --mandir=/usr/share/man || return 1
|
|
make || return 1
|
|
make DESTDIR=$pkgdir install || return 1
|
|
install -D -m644 ../$pkgname.desktop $pkgdir/usr/share/applications/$pkgname.desktop
|
|
}
|