861ac185a6
```sh git grep -l '^patch_args=-Np0' "srcpkgs/$1*/template" | while read template; do for p in ${template%/template}/patches/*; do sed -i ' \,^[+-][+-][+-] /dev/null,b /^[*-]\+ [0-9]\+\(,[0-9]\+\)\? [*-]\+$/b s,^[*][*][*] ,&a/, /^--- /{ s,\(^--- \)\(./\)*,\1a/, s,[.][Oo][Rr][Ii][Gg]\([ /]\),\1, s/[.][Oo][Rr][Ii][Gg]$// s/[.]patched[.]\([^.]\)/.\1/ h } /^+++ -/{ g s/^--- a/+++ b/ b } s,\(^+++ \)\(./\)*,\1b/, ' "$p" done sed -i '/^patch_args=/d' $template done ```
33 lines
999 B
Bash
33 lines
999 B
Bash
# Template file for 'libproxy'
|
|
pkgname=libproxy
|
|
version=0.4.15
|
|
revision=1
|
|
build_style=cmake
|
|
configure_args="-DWITH_GNOME=0 -DWITH_KDE4=0 -DWITH_MOZJS=0 -DWITH_NM=0
|
|
-DWITH_PERL=0 -DWITH_PYTHON=1 -DWITH_WEBKIT=0"
|
|
hostmakedepends="pkg-config python"
|
|
makedepends="zlib-devel"
|
|
short_desc="A library handling all the details of proxy configuration"
|
|
maintainer="Orphaned <orphan@voidlinux.org>"
|
|
homepage="http://github.com/libproxy/libproxy"
|
|
license="LGPL-2.1"
|
|
distfiles="https://github.com/libproxy/libproxy/archive/${version}.tar.gz>${pkgname}-${version}.tar.gz"
|
|
checksum=18f58b0a0043b6881774187427ead158d310127fc46a1c668ad6d207fb28b4e0
|
|
|
|
libproxy-devel_package() {
|
|
depends="libproxy>=${version}_${revision}"
|
|
short_desc+=" - development files"
|
|
pkg_install() {
|
|
vmove usr/include
|
|
vmove usr/share
|
|
vmove usr/lib/pkgconfig
|
|
vmove "usr/lib/*.so"
|
|
}
|
|
}
|
|
libproxy-python_package() {
|
|
depends="libproxy>=${version} python"
|
|
short_desc+=" - python bindings"
|
|
pkg_install() {
|
|
vmove "usr/lib/python*"
|
|
}
|
|
}
|