diff options
author | Parabola <dev@list.parabolagnulinux.org> | 2011-11-23 16:27:38 +0000 |
---|---|---|
committer | Parabola <dev@list.parabolagnulinux.org> | 2011-11-23 16:27:38 +0000 |
commit | 851ab9aa99e9bda38f88b5f5ade096c9137e11c8 (patch) | |
tree | 3348def9f302163ab06833327d534d99fcf86333 /community/lat | |
parent | 859f538490d5f7a35356c8813cf5757b175eea98 (diff) |
Wed Nov 23 16:27:34 UTC 2011
Diffstat (limited to 'community/lat')
-rwxr-xr-x | community/lat/PKGBUILD | 33 | ||||
-rw-r--r-- | community/lat/lat.install | 26 |
2 files changed, 0 insertions, 59 deletions
diff --git a/community/lat/PKGBUILD b/community/lat/PKGBUILD deleted file mode 100755 index 7093e048d..000000000 --- a/community/lat/PKGBUILD +++ /dev/null @@ -1,33 +0,0 @@ -# $Id: PKGBUILD 5402 2009-11-08 07:59:58Z ebelanger $ -# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> -# Contributor: William Rea <sillywilly@gmail.com> - -pkgname=lat -pkgver=1.2.3 -pkgrel=2 -pkgdesc="LDAP Administration Tool" -arch=('i686' 'x86_64') -url="http://sourceforge.net/projects/ldap-at/" -license=("GPL") -depends=('gnome-keyring' 'gtk-sharp-2' 'avahi' 'gnome-sharp' 'rarian') -makedepends=('gettext' 'intltool' 'pkgconfig') -install=$pkgname.install -source=(http://downloads.sourceforge.net/ldap-at/lat-$pkgver.tar.gz) -md5sums=('0725508d180720d260a70c5b39d387ba') -sha1sums=('52e2de528d2fa35519b2d67cd2937d4d524001de') - -build() { - export MONO_SHARED_DIR="$srcdir/.wabi" - mkdir -p $MONO_SHARED_DIR - cd "$srcdir/lat-$pkgver" - find . -name Makefile.in -exec sed -i -e 's/-scrollkeeper-update.*//' {} \; - if [ -f omf.make ]; then - sed -i -e 's/-scrollkeeper-update.*//' omf.make - fi - - ./configure --prefix=/usr --enable-avahi=yes || return 1 - make || return 1 - make DESTDIR="$pkgdir" install || return 1 - - rm -rf $MONO_SHARED_DIR -} diff --git a/community/lat/lat.install b/community/lat/lat.install deleted file mode 100644 index 70bbdd964..000000000 --- a/community/lat/lat.install +++ /dev/null @@ -1,26 +0,0 @@ -pkgname=lat - -post_install() { - scrolls=(`pacman -Ql $pkgname | grep 'share/omf/.*\.omf$' | awk '{ print $2 }'`) - - for scroll in "${scrolls[@]}" ; do - scrollkeeper-install -q -p var/lib/scrollkeeper "$scroll" - done -} - -pre_upgrade() { - pre_remove $1 -} - -post_upgrade() { - post_install $1 -} - -pre_remove() { - scrolls=(`pacman -Ql $pkgname | grep 'share/omf/.*\.omf$' | awk '{ print $2 }'`) - - for scroll in "${scrolls[@]}" ; do - scrollkeeper-uninstall -q -p var/lib/scrollkeeper "$scroll" - done -} - |