1
0
Fork 0
libsearpc-aur/PKGBUILD

73 lines
2.2 KiB
Bash
Raw Normal View History

2013-02-01 07:30:03 -05:00
# Maintainer: Aaron Lindsay <aaron@aclindsay.com>
# Name of the Software your PKGBUILD will install - should be unique. See PKGBUILD#pkgname
pkgname=libsearpc
# The version number for the software
2014-03-13 19:16:53 -04:00
pkgver=1.2.2
_seafilever=2.1.2
2013-02-01 07:30:03 -05:00
#The release number for the arch package, as fixes are added to the PKGBUILD, the release number will increase
2014-03-13 19:16:53 -04:00
pkgrel=1
2013-02-01 07:30:03 -05:00
# The description of the package, should be about 80 characters long (one line)
pkgdesc="A simple and easy-to-use C language RPC framework (including both server side & client side) based on GObject System."
# The type of processor this software can build and work on. See PKGBUILD#arch
2013-07-20 13:46:27 -04:00
arch=('i686' 'x86_64' 'armv6h' 'armv7h')
2013-02-01 07:30:03 -05:00
# The official website for the software your PKGBUILD will install
url="https://github.com/haiwen/libsearpc/"
# The License that the software is released under. See PKGBUILD#license
license=('GPLv3')
# Packages that your software needs to run. If the dependancy requires a minimum version number use the >= operator
2014-01-15 13:06:34 -05:00
depends=('glib2>=2.16.0' 'pacman>=4.1' 'jansson>=2.2.1')
2013-02-01 07:30:03 -05:00
# Packages that must be installed to build the software, but at not necessary to run it
makedepends=('python2-simplejson')
# Optional packages that extend the software's functionality
optdepends=('python2-simplejson')
# List of Package names that this PKGBUILD provides. Put modified packages that will be installed here.
provides=()
# Change the default behavior of makepkg see PKGBUILD#options
options=
2013-10-31 19:58:53 -04:00
source=("https://github.com/haiwen/libsearpc/archive/v${_seafilever}.tar.gz"
"libsearpc.pc.patch")
2014-03-13 19:16:53 -04:00
sha256sums=('87756953e178e1cd3030969d7ac0db887e9e80c3163d91096e94906c974bb80d'
'aec39a303aaebc0777a22d8c53367f52f619654d63f62b362d75c1c599e632f4')
configure_libsearpc() {
./autogen.sh
./configure --prefix=/usr PYTHON=/usr/bin/python2
}
2014-01-15 13:06:34 -05:00
pkgver() {
cd "$srcdir/$pkgname-$_seafilever"
configure_libsearpc &> /dev/null
2014-01-15 13:06:34 -05:00
grep "PACKAGE_VERSION" Makefile | sed 's/PACKAGE_VERSION.*=[ \t]\+\([0-9\.]\+\)[ \t]*/\1/g'
}
prepare () {
2014-01-15 13:06:34 -05:00
pkgver
cd "$srcdir/$pkgname-$_seafilever"
patch -p1 -i $srcdir/libsearpc.pc.patch
}
2013-02-01 07:30:03 -05:00
build () {
2014-01-15 13:06:34 -05:00
cd "$srcdir/$pkgname-$_seafilever"
configure_libsearpc
make -j1
2013-02-01 07:30:03 -05:00
}
package () {
#install library and header files
2014-01-15 13:06:34 -05:00
cd "$srcdir/$pkgname-$_seafilever"
2013-02-01 07:30:03 -05:00
make DESTDIR="$pkgdir/" install
}