summaryrefslogtreecommitdiff
path: root/community/tora
diff options
context:
space:
mode:
authorParabola <dev@list.parabolagnulinux.org>2012-01-09 13:47:51 +0000
committerParabola <dev@list.parabolagnulinux.org>2012-01-09 13:47:51 +0000
commit7a3611f5caa5e34c1f2b582640f97b733110ae63 (patch)
tree5b0baf1ad1b36444ffbf73707a377b15fc67692f /community/tora
parent46783b68621b6ad45cdd9ed64cfa8cdcfbc6f318 (diff)
Mon Jan 9 13:47:49 UTC 2012
Diffstat (limited to 'community/tora')
-rw-r--r--community/tora/PKGBUILD33
-rw-r--r--community/tora/tora.install19
2 files changed, 0 insertions, 52 deletions
diff --git a/community/tora/PKGBUILD b/community/tora/PKGBUILD
deleted file mode 100644
index 49b8e64fa..000000000
--- a/community/tora/PKGBUILD
+++ /dev/null
@@ -1,33 +0,0 @@
-# $Id: PKGBUILD 58339 2011-11-12 08:18:18Z andrea $
-# Maintainer: Angel 'angvp' Velasquez <angvp[at]archlinux.com.ve>
-# Contributor: Andrea Scarpino <andrea@archlinux.org>
-# Contributor: Stefan Husmann <stefan-husmann@t-online.de>
-# Contributor: Douglas Soares de Andrade <dsandrade@gmail.com>
-
-pkgname=tora
-pkgver=2.1.3
-pkgrel=3
-pkgdesc="Toolkit for databases with support for MySQL and PostgreSQL"
-arch=('i686' 'x86_64')
-url="http://tora.sourceforge.net"
-license=('GPL')
-depends=('qscintilla')
-makedepends=('cmake')
-options=('!libtool' '!emptydirs')
-source=("http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz")
-md5sums=('ea4a75a9daeaf58492413e3f7fe40293')
-
-build() {
- cd "${srcdir}"
- mkdir build
- cd build
- cmake ../${pkgname}-${pkgver} \
- -DCMAKE_INSTALL_PREFIX=/usr \
- -DCMAKE_BUILD_TYPE=Release
- make
-}
-
-package() {
- cd "${srcdir}"/build
- make DESTDIR="${pkgdir}" install
-}
diff --git a/community/tora/tora.install b/community/tora/tora.install
deleted file mode 100644
index 161b21e2b..000000000
--- a/community/tora/tora.install
+++ /dev/null
@@ -1,19 +0,0 @@
-# Thanks to: Serge Gielkens (Teld) for this bugfix
-infodir=usr/share/info
-filelist=(tora.info)
-
-post_install() {
- for file in ${filelist[@]}; do
- install-info $infodir/$file $infodir/dir 2> /dev/null
- done
-}
-
-post_upgrade() {
- post_install $1
-}
-
-pre_remove() {
- for file in ${filelist[@]}; do
- install-info --delete $infodir/$file $infodir/dir 2> /dev/null
- done
-}