diff options
author | Kevin Brodsky | 2015-06-11 21:25:59 +0200 |
---|---|---|
committer | Kevin Brodsky | 2015-06-11 21:25:59 +0200 |
commit | a2e36db04865f781162b7f066ec743db4c79e297 (patch) | |
tree | c3f9919d2abc950a4fb4785fa381b068e3b52054 | |
download | aur-a2e36db04865f781162b7f066ec743db4c79e297.tar.gz |
libbobcat 3.25.01-1
-rw-r--r-- | .SRCINFO | 20 | ||||
-rw-r--r-- | PKGBUILD | 28 |
2 files changed, 48 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO new file mode 100644 index 00000000000..67ca1d090cc --- /dev/null +++ b/.SRCINFO @@ -0,0 +1,20 @@ +pkgbase = libbobcat + pkgdesc = Bobcat (Brokken's Own Base Classes And Templates) library + pkgver = 3.25.01 + pkgrel = 1 + url = http://bobcat.sourceforge.net + arch = i686 + arch = x86_64 + license = GPL + makedepends = icmake + makedepends = openssl + makedepends = libmilter + makedepends = libx11 + makedepends = yodl + depends = openssl + depends = libx11 + source = http://downloads.sourceforge.net/project/bobcat/bobcat/3.25.01/bobcat_3.25.01.orig.tar.gz + md5sums = df15f4b981df4f423c408d31198d94c5 + +pkgname = libbobcat + diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 00000000000..03e4869268f --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,28 @@ +# Maintainer: Kevin Brodsky <corax26 at gmail dot com> +# Contributor: Anton Jongsma <anton@felrood.nl> +pkgname=libbobcat +pkgver=3.25.01 +pkgrel=1 +pkgdesc="Bobcat (Brokken's Own Base Classes And Templates) library" +arch=('i686' 'x86_64') +url="http://bobcat.sourceforge.net" +license=('GPL') +depends=('openssl' 'libx11') +makedepends=('icmake' 'openssl' 'libmilter' 'libx11' 'yodl') +optdepends=() +source=("http://downloads.sourceforge.net/project/bobcat/bobcat/${pkgver}/bobcat_${pkgver}.orig.tar.gz") +md5sums=('df15f4b981df4f423c408d31198d94c5') + +build() { + cd "$srcdir/bobcat-${pkgver}" + CXXFLAGS="$CXXFLAGS --std=c++11 -pthread" + LDFLAGS="$LDFLAGS -pthread" + ./build libraries all + ./build man +} + +package() { + cd "$srcdir/bobcat-${pkgver}" + ./build install "$pkgdir" "$pkgdir" +} + |