20 lines
471 B
Plaintext
20 lines
471 B
Plaintext
|
# Description: library http that was implemented in C
|
||
|
# URL: library http that was implemented in C
|
||
|
# Packager: pierre at nutyx dot org
|
||
|
# Depends on: glib-networking libxml2 gobject-introspection vala sqlite
|
||
|
|
||
|
run=( glib-networking )
|
||
|
name=libsoup
|
||
|
version=2.52.2
|
||
|
release=1
|
||
|
|
||
|
source=(http://ftp.gnome.org/pub/gnome/sources/$name/${version%.*}/$name-$version.tar.xz)
|
||
|
|
||
|
build() {
|
||
|
cd $name-$version
|
||
|
./configure --prefix=/usr \
|
||
|
--disable-static
|
||
|
make
|
||
|
make DESTDIR=$PKG install
|
||
|
}
|