Initial PKGBUILD status as of 28.11.2014

This commit is contained in:
Jaroslav Lichtblau 2014-11-28 20:17:14 +01:00
commit 743a73f8a3
4 changed files with 73 additions and 0 deletions

20
.SRCINFO Normal file
View file

@ -0,0 +1,20 @@
pkgbase = pessulus
pkgdesc = A lockdown editor for GNOME
pkgver = 2.30.2
pkgrel = 5
url = http://live.gnome.org/Pessulus
install = pessulus.install
changelog = pessulus.changelog
arch = any
license = GPL
makedepends = pkgconfig
makedepends = gettext
makedepends = intltool
depends = python2-bonobo
depends = python2-gconf
depends = hicolor-icon-theme
source = http://ftp.gnome.org/pub/GNOME/sources/pessulus/2.30/pessulus-2.30.2.tar.gz
sha256sums = 660611ce0bf34039ac2bbdc73f58d4098c4fc72a4b1301dba6004a43944e0871
pkgname = pessulus

32
PKGBUILD Normal file
View file

@ -0,0 +1,32 @@
# $Id: PKGBUILD 78820 2012-10-25 06:47:28Z foutrelis $
# Maintainer: Jaroslav Lichtblau <dragonlord@aur.archlinux.org>
# Contributor: Roman Kyrylych <Roman.Kyrylych@gmail.com>
# Contributor: William Rea <sillywilly@gmail.com>
pkgname=pessulus
pkgver=2.30.2
pkgrel=5
pkgdesc="A lockdown editor for GNOME"
arch=('any')
url="http://live.gnome.org/Pessulus"
license=('GPL')
depends=('python2-bonobo' 'python2-gconf' 'hicolor-icon-theme')
makedepends=('pkgconfig' 'gettext' 'intltool')
changelog=$pkgname.changelog
install=$pkgname.install
source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/2.30/$pkgname-$pkgver.tar.gz)
sha256sums=('660611ce0bf34039ac2bbdc73f58d4098c4fc72a4b1301dba6004a43944e0871')
build() {
cd ${srcdir}/$pkgname-$pkgver
export PYTHON=`which python2`
./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var
make
}
package() {
cd ${srcdir}/$pkgname-$pkgver
make DESTDIR=${pkgdir} install
}

8
pessulus.changelog Normal file
View file

@ -0,0 +1,8 @@
2012-03-18 Jaroslav Lichtblau <dragonlord@aur.archlinux.org>
* pessulus 2.30.2-5 package sighed
2010-06-23 Jaroslav Lichtblau <dragonlord@aur.archlinux.org>
* Update to major release 2.30.2
2010-04-04 Jaroslav Lichtblau <dragonlord@aur.archlinux.org>
* Update to major release 2.30.0

13
pessulus.install Normal file
View file

@ -0,0 +1,13 @@
post_install() {
gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
update-desktop-database -q
update-mime-database usr/share/mime > /dev/null
}
post_upgrade() {
post_install $1
}
post_remove() {
post_install $1
}