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
|
|
|
|
pkgver=1.0.1
|
|
|
|
_seafilever=1.4.5
|
|
|
|
|
|
|
|
#The release number for the arch package, as fixes are added to the PKGBUILD, the release number will increase
|
2013-02-26 09:21:49 -05:00
|
|
|
pkgrel=4
|
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
|
|
|
|
arch=('i686' 'x86_64')
|
|
|
|
|
|
|
|
# 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
|
|
|
|
depends=('glib2>=2.16.0')
|
|
|
|
|
|
|
|
# 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-02-23 10:36:07 -05:00
|
|
|
source=("http://seafile.googlecode.com/files/seafile-1.4.5.tar.gz"
|
2013-02-01 07:30:03 -05:00
|
|
|
"libsearpc.pc.patch")
|
2013-02-23 10:36:07 -05:00
|
|
|
sha256sums=('d298ea339a8ddc3cec0d8513032b15b1c53ee27bb4afc69f147bca57258fe9fb'
|
2013-02-01 07:30:03 -05:00
|
|
|
'aec39a303aaebc0777a22d8c53367f52f619654d63f62b362d75c1c599e632f4')
|
|
|
|
|
|
|
|
prepare () {
|
|
|
|
cd "$srcdir/seafile-$_seafilever/$pkgname"
|
|
|
|
patch -p1 -i $srcdir/libsearpc.pc.patch
|
|
|
|
}
|
|
|
|
|
|
|
|
build () {
|
|
|
|
prepare
|
|
|
|
cd "$srcdir/seafile-$_seafilever/$pkgname"
|
|
|
|
./configure --prefix=/usr PYTHON=/usr/bin/python2
|
2013-02-26 09:21:49 -05:00
|
|
|
make -j1
|
2013-02-01 07:30:03 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
package () {
|
|
|
|
#install library and header files
|
|
|
|
cd "$srcdir/seafile-$_seafilever/$pkgname"
|
|
|
|
make DESTDIR="$pkgdir/" install
|
|
|
|
}
|