libproxy: initial commit, version 0.5.5

This commit is contained in:
Tim Biermann 2024-04-23 22:18:11 +02:00
parent f6b9af1b07
commit 5374283d7d
Signed by: tb
GPG Key ID: 42F8B4E30B673606
3 changed files with 53 additions and 0 deletions

22
libproxy/.footprint Normal file
View File

@ -0,0 +1,22 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/bin/
-rwxr-xr-x root/root usr/bin/proxy
drwxr-xr-x root/root usr/include/
drwxr-xr-x root/root usr/include/libproxy/
-rw-r--r-- root/root usr/include/libproxy/proxy.h
drwxr-xr-x root/root usr/lib/
drwxr-xr-x root/root usr/lib/girepository-1.0/
-rw-r--r-- root/root usr/lib/girepository-1.0/Libproxy-1.0.typelib
lrwxrwxrwx root/root usr/lib/libproxy.so -> libproxy.so.1
-rwxr-xr-x root/root usr/lib/libproxy.so.0.5.5
lrwxrwxrwx root/root usr/lib/libproxy.so.1 -> libproxy.so.0.5.5
drwxr-xr-x root/root usr/lib/libproxy/
-rwxr-xr-x root/root usr/lib/libproxy/libpxbackend-1.0.so
drwxr-xr-x root/root usr/lib/pkgconfig/
-rw-r--r-- root/root usr/lib/pkgconfig/libproxy-1.0.pc
drwxr-xr-x root/root usr/share/
drwxr-xr-x root/root usr/share/gir-1.0/
-rw-r--r-- root/root usr/share/gir-1.0/Libproxy-1.0.gir
drwxr-xr-x root/root usr/share/man/
drwxr-xr-x root/root usr/share/man/man8/
-rw-r--r-- root/root usr/share/man/man8/proxy.8.gz

5
libproxy/.signature Normal file
View File

@ -0,0 +1,5 @@
untrusted comment: verify with /etc/ports/kde-plasma-6.pub
RWTGxEYrvi0p3mwuHPZeFUa1FhS5FsfvoU/HmfBGvBz6c80IZ/1H55jMWYFXJtti7TUtaN+3FMGNmOu9XS108V17CtrCT1rfagI=
SHA256 (Pkgfile) = ba9e6b91bfd8759b8a906abe8b80e0edded44e0f3d34abc2399e3fabf7649bcf
SHA256 (.footprint) = cf66f4ceed559ae318c48236995894f42de35f4190b45eb095667e839335b9b3
SHA256 (libproxy-0.5.5.tar.gz) = 11a2eace773755e79b8d37833985ce475aed4ca4d3e6656defd5eef67b5a00f1

26
libproxy/Pkgfile Normal file
View File

@ -0,0 +1,26 @@
# Description: Automatic proxy configuration management library
# URL: https://libproxy.github.io/libproxy/
# Maintainer: CRUX KDE Ports, kde-ports at crux dot nu
# Depends on: duktape gsettings-desktop-schemas python3-gobject
name=libproxy
version=0.5.5
release=1
source=(https://github.com/libproxy/libproxy/archive/$version/$name-$version.tar.gz)
build() {
prt-get isinst vala || PKGMK_LIBPROXY+=' -D vapi=false'
meson setup $name-$version build $PKGMK_LIBPROXY \
--prefix=/usr \
--buildtype=plain \
--wrap-mode nodownload \
-D b_lto=true \
-D b_pie=true \
-D release=true \
-D docs=false
meson compile -C build
DESTDIR=$PKG meson install -C build
}
# vim: set ts=4 et: