diff options
author | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
---|---|---|
committer | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
commit | 415856bdd4f48ab4f2732996f0bae58595092bbe (patch) | |
tree | ede2018b591f6dfb477fe9341ba17b9bc000fab9 /community/winefish |
Tue Apr 5 14:26:38 UTC 2011
Diffstat (limited to 'community/winefish')
-rw-r--r-- | community/winefish/PKGBUILD | 30 | ||||
-rw-r--r-- | community/winefish/winefish.install | 14 |
2 files changed, 44 insertions, 0 deletions
diff --git a/community/winefish/PKGBUILD b/community/winefish/PKGBUILD new file mode 100644 index 000000000..c692791b8 --- /dev/null +++ b/community/winefish/PKGBUILD @@ -0,0 +1,30 @@ +# $Id: PKGBUILD 23711 2010-08-15 05:56:23Z shusmann $ +# Contributor: Allan McRae <allan@archlinux.org> +# Contributor: Claudio Riva <firetux83@gmail.com> +# Maintainer: Stefan Husmann <stefan-husmann@t-online.de> + +pkgname=winefish +pkgver=1.3.3 +pkgrel=9 +pkgdesc="LaTeX editor based on Bluefish with auto-completion and syntax highlighting" +url="http://winefish.berlios.de/" +arch=('i686' 'x86_64') +license=('GPL') +depends=('libgnomeui') +makedepends=('pkgconfig') +optdepends=('aspell: for spell check') +install=$pkgname.install +source=(http://download.berlios.de/$pkgname/$pkgname-$pkgver.tgz) +md5sums=('63531e4dde7a53ab3a74e1152c7af1e9') + +build() { + cd ${srcdir}/${pkgname}-${pkgver} + ./configure --prefix=/usr --disable-update-databases \ + --with-freedesktop_org-menu=/usr/share/applications \ + --with-icon-path=/usr/share/pixmaps --mandir=/usr/share/man + make +} +package() { + cd ${srcdir}/${pkgname}-${pkgver} + make DESTDIR=${pkgdir} install +} diff --git a/community/winefish/winefish.install b/community/winefish/winefish.install new file mode 100644 index 000000000..8ae71b3e6 --- /dev/null +++ b/community/winefish/winefish.install @@ -0,0 +1,14 @@ +post_install() { + update-desktop-database -q + update-mime-database usr/share/mime &> /dev/null +} + +post_upgrade() { + update-desktop-database -q + update-mime-database usr/share/mime &> /dev/null +} + +post_remove() { + update-desktop-database -q + update-mime-database usr/share/mime &> /dev/null +} |