Initial PKGBUILD status as of 28.11.2014

This commit is contained in:
Jaroslav Lichtblau 2014-11-28 20:17:14 +01:00
commit 8ff91d611c
2 changed files with 42 additions and 0 deletions

16
.SRCINFO Normal file
View file

@ -0,0 +1,16 @@
pkgbase = dbhub
pkgdesc = Direct Connect hub software, based on Open DC Hub but with many enhancements.
pkgver = 0.451
pkgrel = 1
url = http://www.dbhub.org
arch = i686
arch = x86_64
license = GPL
makedepends = perl
depends = libcap
depends = openssl
source = http://downloads.sourceforge.net/dbhub/dbhub-0.451.tbz2
md5sums = 79cf321b521b548dabfccdb57500a8f0
pkgname = dbhub

26
PKGBUILD Normal file
View file

@ -0,0 +1,26 @@
# Maintainer: Xilon <xilonmu@gmail.com>
pkgname=dbhub
pkgver=0.451
pkgrel=1
pkgdesc='Direct Connect hub software, based on Open DC Hub but with many enhancements.'
arch=('i686' 'x86_64')
url='http://www.dbhub.org'
license=('GPL')
depends=('libcap' 'openssl')
makedepends=('perl')
source=("http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tbz2")
md5sums=('79cf321b521b548dabfccdb57500a8f0')
build() {
cd "$srcdir/$pkgname-$pkgver"
sed -i 's/^\(ACLOCAL=.*\)-${am__api_version}\(.*\)$/\1\2/' configure
sed -i 's/^\(AUTOMAKE=.*\)-${am__api_version}\(.*\)$/\1\2/' configure
./configure --prefix=/usr --enable-switch-user --enable-perl \
CFLAGS="$CFLAGS" || return 1
make || return 1
make DESTDIR="$pkgdir" install || return 1
}