[notify] serf: updated to 1.3.8

Added new dependency: scons
This commit is contained in:
Jose V Beneyto 2014-12-16 09:26:09 +00:00
parent b118d6511f
commit 31ed6677d8
3 changed files with 14 additions and 12 deletions

View File

@ -5,10 +5,8 @@ drwxr-xr-x root/root usr/include/serf-1/
-rw-r--r-- root/root usr/include/serf-1/serf_bucket_types.h
-rw-r--r-- root/root usr/include/serf-1/serf_bucket_util.h
drwxr-xr-x root/root usr/lib/
-rw-r--r-- root/root usr/lib/libserf-1.a
-rw-r--r-- root/root usr/lib/libserf-1.la
lrwxrwxrwx root/root usr/lib/libserf-1.so -> libserf-1.so.0.0.0
lrwxrwxrwx root/root usr/lib/libserf-1.so.0 -> libserf-1.so.0.0.0
-rw-r--r-- root/root usr/lib/libserf-1.so.0.0.0
lrwxrwxrwx root/root usr/lib/libserf-1.so -> libserf-1.so.1.3.0
lrwxrwxrwx root/root usr/lib/libserf-1.so.1 -> libserf-1.so.1.3.0
-rwxr-xr-x root/root usr/lib/libserf-1.so.1.3.0
drwxr-xr-x root/root usr/lib/pkgconfig/
-rw-r--r-- root/root usr/lib/pkgconfig/serf-1.pc

View File

@ -1 +1 @@
4f8e76c9c6567aee1d66aba49f76a58b serf-1.2.1.tar.bz2
2e4efe57ff28cb3202a112e90f0c2889 serf-1.3.8.tar.bz2

View File

@ -2,18 +2,22 @@
# URL: https://code.google.com/p/serf/
# Maintainer: Jose V Beneyto, sepen at crux dot nu
# Packager: Jose V Beneyto, sepen at crux dot nu
# Depends on: apr
# Depends on: apr scons
name=serf
version=1.2.1
version=1.3.8
release=1
source=(https://serf.googlecode.com/files/$name-$version.tar.bz2)
source=(https://serf.googlecode.com/svn/src_releases/$name-$version.tar.bz2)
build() {
cd $name-$version
./configure --prefix=/usr
# removes runtime path from shared library
sed '/Append/ s/RPATH=libdir,//' -i SConstruct
# disable building and installing of the static library
sed '/Default/ s/lib_static,//' -i SConstruct
sed '/Alias/ s/install_static,//' -i SConstruct
make
make DESTDIR=$PKG install
scons PREFIX=/usr LIBDIR=/usr/lib
scons install --install-sandbox=$PKG
}