summaryrefslogtreecommitdiff
path: root/community-staging/libfbclient/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'community-staging/libfbclient/PKGBUILD')
-rw-r--r--community-staging/libfbclient/PKGBUILD41
1 files changed, 0 insertions, 41 deletions
diff --git a/community-staging/libfbclient/PKGBUILD b/community-staging/libfbclient/PKGBUILD
deleted file mode 100644
index 2a4fabae9..000000000
--- a/community-staging/libfbclient/PKGBUILD
+++ /dev/null
@@ -1,41 +0,0 @@
-# $Id: PKGBUILD 68790 2012-04-01 22:23:35Z lcarlier $
-# Maintainer: Carlier Laurent <lordheavym@gmail.com>
-# Contributor: Douglas Soares de Andrade <dsa@aur.archlinux.org>
-
-pkgname=libfbclient
-pkgver=2.5.1.26351
-pkgrel=2
-pkgdesc="Client library for Firebird."
-arch=('i686' 'x86_64')
-url="http://www.firebirdsql.org/"
-license=('custom')
-depends=('gcc-libs' 'icu')
-options=('!makeflags')
-source=(http://downloads.sourceforge.net/firebird/Firebird-$pkgver-0.tar.bz2
- LICENSE)
-md5sums=('1772fba4f09c8fc84d989282405f90fd'
- '0d61798861e159c85dbdf0f30fe2f2ce')
-
-build() {
- cd $srcdir/Firebird-$pkgver-0
-
- ./configure --prefix=/usr --with-system-icu --without-fbudf \
- --without-fbsbin --without-fbconf --without-fbdoc --without-fbsample \
- --without-fbsample-db --without-fbintl --without-fbmisc --without-fbhelp \
- --without-fbsecure-db --with-fbmsg=/usr/share/firebird --without-fblog \
- --without-fbglock --without-fbplugins
-
- make
-}
-
-package() {
- cd $srcdir/Firebird-$pkgver-0
-
- mkdir -p $pkgdir/usr/{bin,share/firebird}
- cp -R gen/firebird/{lib,include} $pkgdir/usr
- rm -f $pkgdir/usr/lib/libedit.a
- install -m644 gen/firebird/*.msg $pkgdir/usr/share/firebird
- install -m755 gen/firebird/bin/fb_config $pkgdir/usr/bin
- mkdir -p $srcdir/usr/share/licenses/$pkgname/
- install -D -m644 ${srcdir}/LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
-}